summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarry Warsaw2008-03-15 10:16:22 -0500
committerBarry Warsaw2008-03-15 10:16:22 -0500
commit60bf04aef6da1344a80c0372843898ab968f9651 (patch)
tree7025bcbd6308d9a4ac96840395414414d4da50b0
parent271f6dfe08c3bd850022d1b7ab61fe596f527540 (diff)
downloadmailman-60bf04aef6da1344a80c0372843898ab968f9651.tar.gz
mailman-60bf04aef6da1344a80c0372843898ab968f9651.tar.zst
mailman-60bf04aef6da1344a80c0372843898ab968f9651.zip
-rw-r--r--mailman/queue/lmtp.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/mailman/queue/lmtp.py b/mailman/queue/lmtp.py
index 558db7a90..9168cc1a1 100644
--- a/mailman/queue/lmtp.py
+++ b/mailman/queue/lmtp.py
@@ -124,10 +124,13 @@ class LMTPRunner(Runner, smtpd.SMTPServer):
localaddr = config.LMTP_HOST, config.LMTP_PORT
# Do not call Runner's constructor because there's no QDIR to create
smtpd.SMTPServer.__init__(self, localaddr, remoteaddr=None)
+ qlog.debug('LMTP server listening on %s:%s',
+ config.LMTP_HOST, config.LMTP_PORT)
def handle_accept(self):
conn, addr = self.accept()
channel = Channel(self, conn, addr)
+ qlog.debug('LMTP accept from %s', addr)
@txn
def process_message(self, peer, mailfrom, rcpttos, data):