Mercurial > masqmail
comparison src/smtp_in.c @ 204:5745edd5b769
removed the --disable-smtp-server configure option
masqmail will now always have the possibility to listen on a port compiled in
if you don't want it to listen on a port add this to your masqmail.conf:
listen_addresses = ""
also, if you don't start it as daemon it will not listen neither
author | meillo@marmaro.de |
---|---|
date | Fri, 16 Jul 2010 15:38:53 +0200 |
parents | 6b78aaced5e1 |
children | 3708b655a371 |
comparison
equal
deleted
inserted
replaced
203:45acc5727493 | 204:5745edd5b769 |
---|---|
27 RFC 1870 (ESMTP SIZE) | 27 RFC 1870 (ESMTP SIZE) |
28 RFC 2197 (ESMTP PIPELINE) | 28 RFC 2197 (ESMTP PIPELINE) |
29 RFC 2554 (ESMTP AUTH) | 29 RFC 2554 (ESMTP AUTH) |
30 */ | 30 */ |
31 | 31 |
32 #ifdef ENABLE_SMTP_SERVER | |
33 | 32 |
34 smtp_cmd smtp_cmds[] = { | 33 smtp_cmd smtp_cmds[] = { |
35 {SMTP_HELO, "HELO",}, | 34 {SMTP_HELO, "HELO",}, |
36 {SMTP_EHLO, "EHLO",}, | 35 {SMTP_EHLO, "EHLO",}, |
37 {SMTP_MAIL_FROM, "MAIL FROM:",}, | 36 {SMTP_MAIL_FROM, "MAIL FROM:",}, |
416 break; | 415 break; |
417 default: | 416 default: |
418 break; | 417 break; |
419 } | 418 } |
420 } | 419 } |
421 #endif |