Created
February 17, 2011 13:52
-
-
Save jonyesno/831755 to your computer and use it in GitHub Desktop.
Exim mail defer script
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
#!/bin/sh | |
# http://www.exim.org/exim-html-current/doc/html/spec_html/ch29.html | |
# | |
# script to run under Exim's pipe transport that returns the magic | |
# exit code such that exim defers delivery | |
# | |
# relies on defaults for temp_errors setting | |
# | |
# useful to put piped mail handling on hold during maintenance | |
exit 75 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment