Compare commits

..

No commits in common. '9e3ff3d33639fe1daeb9b40b9aa21d615368a47e' and '50a6a6300c71d3ce7e615596f48ca026365ba9c9' have entirely different histories.

  1. 1
      example_configs/pmmlrc
  2. 2
      pmml.py

@ -3,6 +3,7 @@
"recipients": ["user1@example.org", "user2@example.org" ],
"smtp_server": "smtp.example.org",
"smtp_port": 587,
"connection": "STARTTLS",
"smtp_user": "mailinglist@example.org",
"smtp_pass": "PASSWORD"
}

@ -34,7 +34,7 @@ def cli(config_file, mailing_list_address):
msg = email.parser.Parser().parse(input)
if msg["Subject"] in ignore_subjects:
print(f"Skipping processing because of subject: {msg['Subject']}")
print(f"Skipping processing because auf subject: {msg['Subject']}")
else:
smtp_client = setup_smtp_session(
config["smtp_server"],

Loading…
Cancel
Save