diff options
Diffstat (limited to 'debian/local/sendmail.in')
-rw-r--r-- | debian/local/sendmail.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/debian/local/sendmail.in b/debian/local/sendmail.in index c1a86cb..3ade92a 100644 --- a/debian/local/sendmail.in +++ b/debian/local/sendmail.in @@ -73,11 +73,6 @@ Get_Parameters () { . @sysconfdir@/mail/sendmail.conf; fi; - # Sanitize some keyword entries - DAEMON_MODE=$(echo "$DAEMON_MODE" | tr '[:upper:]' '[:lower:]'); - QUEUE_MODE=$(echo "$QUEUE_MODE" | tr '[:upper:]' '[:lower:]'); - MSP_MODE=$(echo "$MSP_MODE" | tr '[:upper:]' '[:lower:]'); - # These can't be user customized SM_Get_Parameters='yes'; PATH='/bin:/usr/bin:/sbin:/usr/sbin'; @@ -129,6 +124,11 @@ Get_Parameters () { # Support for coexistance with smtpd package SMTPD='/usr/sbin/smtpd'; + # Sanitize some keyword entries + DAEMON_MODE=$(echo "$DAEMON_MODE" | tr '[:upper:]' '[:lower:]'); + QUEUE_MODE=$(echo "$QUEUE_MODE" | tr '[:upper:]' '[:lower:]'); + MSP_MODE=$(echo "$MSP_MODE" | tr '[:upper:]' '[:lower:]'); + # See if we can share the listener and queue-runner daemon: # * Both must be in daemon mode # * They must have the same (possibly empty) parameters |