Skip to content

Commit

Permalink
Enforce certificate checks with fetchmail, fixes #24
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiyou committed Jun 26, 2016
1 parent 1673631 commit fc8da91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fetchmail/fetchmail.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def fetchmail(fetchmailrc):
with tempfile.NamedTemporaryFile() as handler:
handler.write(fetchmailrc.encode("utf8"))
handler.flush()
os.system("fetchmail -N -f '{}'".format(handler.name))
os.system("fetchmail --sslcertck -N -f '{}'".format(handler.name))


def run(cursor):
Expand Down

0 comments on commit fc8da91

Please sign in to comment.