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

61 lines
1.4 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-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}
user "{username}" password "{password}"
smtphost "smtp"
smtpname {user_email}
2016-04-28 20:07:38 +02:00
{options}
"""
def fetchmail(fetchmailrc):
with tempfile.NamedTemporaryFile() as handler:
handler.write(fetchmailrc.encode("utf8"))
handler.flush()
2016-06-26 13:54:16 +02:00
os.system(FETCHMAIL.format(handler.name))
2016-04-28 20:07:38 +02:00
def run(cursor):
cursor.execute("""
SELECT user_email, protocol, host, port, tls, username, password
2016-04-28 20:07:38 +02:00
FROM fetch
""")
fetchmailrc = ""
for line in cursor.fetchall():
user_email, protocol, host, port, tls, username, password = line
2016-04-28 20:07:38 +02:00
options = "options ssl" if tls else ""
fetchmailrc += RC_LINE.format(
user_email=user_email,
2016-04-28 20:07:38 +02:00
protocol=protocol,
host=host,
port=port,
username=username,
password=password,
options=options
)
fetchmail(fetchmailrc)
if __name__ == "__main__":
db_path = os.environ.get("DB_PATH", "/data/freeposte.db")
connection = sqlite3.connect(db_path)
while True:
time.sleep(int(os.environ.get("FETCHMAIL_DELAY", 10)))
cursor = connection.cursor()
run(cursor)
cursor.close()