'SmtpMailSystem')); } // Not used any more in D7. variable_del('smtp_library'); } /** * Implements hook_update_N(). * * Back to default mail system if the status flag is off. */ function smtp_update_7100() { $mail_modes = variable_get('mail_system', array('default-system' => 'DefaultMailSystem')); if ($mail_modes['default-system'] == 'SmtpMailSystem' && !variable_get('smtp_on', FALSE)) { $mail_modes['default-system'] = 'DefaultMailSystem'; variable_set('mail_system', $mail_modes); } } /** * Implements hook_update_N(). * * Updating variable value now that new SMTP logging behavior has been * implemented. */ function smtp_update_7101() { $old_debugging_value = variable_get('smtp_debugging', 0); $logging = SMTP_LOGGING_NONE; if ($old_debugging_value == 1) { $logging = SMTP_LOGGING_ERRORS; } variable_set('smtp_debugging', $logging); } /** * Remove the unused 'smtp_library' variable. */ function smtp_update_7102() { variable_del('smtp_library'); }