X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;ds=sidebyside;f=sbr%2Fmts.c;h=d28f285111045fb602bf17399050532cfdd03aee;hb=84b65bad347129f751e3ed208516697bc3fe1820;hp=88bae835c34c24a2c504c7b49db7c78b548b227a;hpb=809e4cb1458859eac403bf2e23d717c23a9cc892;p=mmh diff --git a/sbr/mts.c b/sbr/mts.c index 88bae83..d28f285 100644 --- a/sbr/mts.c +++ b/sbr/mts.c @@ -63,7 +63,7 @@ static char localmbox[BUFSIZ]; * MTS specific variables */ static char *sm_method = "smtp"; -int sm_mts = MTS_SMTP; +int sm_mts = MTS_SENDMAIL_SMTP; char *sendmail = SENDMAILPATH; /* @@ -148,11 +148,13 @@ mts_init (char *name) if (strcmp(sm_method, "smtp") == 0) sm_mts = MTS_SMTP; - else if (strcmp(sm_method, "sendmail") == 0) - sm_mts = MTS_SENDMAIL; + else if (strcmp(sm_method, "sendmail/smtp") == 0) + sm_mts = MTS_SENDMAIL_SMTP; + else if (strcmp(sm_method, "sendmail/pipe") == 0) + sm_mts = MTS_SENDMAIL_PIPE; else { advise(NULL, "unsupported \"mts\" value in mts.conf: %s", sm_method); - sm_mts = MTS_SMTP; + sm_mts = MTS_SENDMAIL_SMTP; } }