Skip to content

Commit

Permalink
Revert "more debugging"
Browse files Browse the repository at this point in the history
This reverts commit 9ec30b6.
  • Loading branch information
FelixSchwarz committed Oct 18, 2024
1 parent 9ec30b6 commit bc1dcfd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion schwarz/mailqueue/message_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ def parse_message_envelope(fp):
parser._set_headersonly()
while True:
line = read_header_line(fp)
print('line: %r' % (line,))
if line == b'':
raise ValueError('Header "X-Queue-Meta-End" not found.')
parser.feed(line)
Expand Down
1 change: 0 additions & 1 deletion schwarz/mailqueue/queue_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ def enqueue_message(msg, queue_path, sender, recipients, return_msg=False,
recipients=recipients,
**queue_args
)
print(repr(msg_bytes))
create_maildir_directories(queue_path)

mailbox = Maildir(queue_path)
Expand Down

0 comments on commit bc1dcfd

Please sign in to comment.