Created
July 20, 2016 15:21
-
-
Save bdlangton/53f6161d1c8aa27cb7e8b750f0895e29 to your computer and use it in GitHub Desktop.
Set smtp mail system enabled w/maillog. Disable sending emails, but log them.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Put in settings.php. | |
$conf['mail_system'] = array('default-system' => 'SmtpMailSystem'); | |
$conf['smtp_deliver'] = '1'; | |
$conf['maillog_devel'] = '1'; | |
$conf['maillog_log'] = '1'; | |
$conf['maillog_send'] = '0'; | |
$conf['maillog_engine'] = 'SmtpMailSystem'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment