1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-14 10:53:30 +02:00
Mailu/services/fetchmail/fetchmail.py

93 lines
2.8 KiB
Python
Raw Normal View History

2016-04-28 20:07:38 +02:00
#!/usr/bin/env python
import sqlite3
import time
import os
import tempfile
2016-09-10 12:27:43 +02:00
import shlex
import subprocess
2016-04-28 20:07:38 +02:00
2016-06-26 13:54:16 +02:00
FETCHMAIL = """
fetchmail -N \
--sslcertck --sslcertpath /etc/ssl/certs \
-f {}
"""
2016-04-28 20:07:38 +02:00
RC_LINE = """
poll "{host}" proto {protocol} port {port}
2016-04-28 20:07:38 +02:00
user "{username}" password "{password}"
is "{user_email}"
2016-04-28 20:07:38 +02:00
smtphost "smtp"
{options}
sslproto 'AUTO'
2016-04-28 20:07:38 +02:00
"""
2016-09-10 12:27:43 +02:00
def escape_rc_string(arg):
return arg.replace("\\", "\\\\").replace('"', '\\"')
2016-04-28 20:07:38 +02:00
def fetchmail(fetchmailrc):
with tempfile.NamedTemporaryFile() as handler:
handler.write(fetchmailrc.encode("utf8"))
handler.flush()
command = FETCHMAIL.format(shlex.quote(handler.name))
output = subprocess.check_output(command, shell=True)
return output
2016-04-28 20:07:38 +02:00
2017-02-02 23:45:43 +02:00
def run(connection, cursor, debug):
2016-04-28 20:07:38 +02:00
cursor.execute("""
2017-02-02 23:45:43 +02:00
SELECT user_email, protocol, host, port, tls, username, password, keep
2016-04-28 20:07:38 +02:00
FROM fetch
""")
for line in cursor.fetchall():
fetchmailrc = ""
2017-02-02 23:45:43 +02:00
user_email, protocol, host, port, tls, username, password, keep = line
options = "options antispam 501, 504, 550, 553, 554"
options += " ssl" if tls else ""
options += " keep" if keep else " fetchall"
2016-04-28 20:07:38 +02:00
fetchmailrc += RC_LINE.format(
2016-09-10 12:27:43 +02:00
user_email=escape_rc_string(user_email),
2016-04-28 20:07:38 +02:00
protocol=protocol,
2016-09-10 12:27:43 +02:00
host=escape_rc_string(host),
2016-04-28 20:07:38 +02:00
port=port,
2016-09-10 12:27:43 +02:00
username=escape_rc_string(username),
password=escape_rc_string(password),
2016-04-28 20:07:38 +02:00
options=options
)
if debug:
print(fetchmailrc)
try:
print(fetchmail(fetchmailrc))
error_message = ""
except subprocess.CalledProcessError as error:
error_message = error.output.decode("utf8")
# No mail is not an error
if not error_message.startswith("fetchmail: No mail"):
print(error_message)
user_info = "for %s at %s" % (user_email, host)
# Number of messages seen is not a error as well
if ("messages" in error_message and
"(seen " in error_message and
user_info in error_message):
print(error_message)
finally:
cursor.execute("""
UPDATE fetch SET error=?, last_check=datetime('now')
WHERE user_email=?
""", (error_message.split("\n")[0], user_email))
connection.commit()
2016-04-28 20:07:38 +02:00
if __name__ == "__main__":
debug = os.environ.get("DEBUG", None) == "True"
db_path = os.environ.get("DB_PATH", "/data/main.db")
2016-04-28 20:07:38 +02:00
connection = sqlite3.connect(db_path)
while True:
cursor = connection.cursor()
2017-02-02 23:45:43 +02:00
run(connection, cursor, debug)
2016-04-28 20:07:38 +02:00
cursor.close()
time.sleep(int(os.environ.get("FETCHMAIL_DELAY", 60)))