Compare commits
27 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
782e744f08
|
|||
|
9337ac72d8
|
|||
|
ac458dade8
|
|||
|
a90e087a5d
|
|||
|
4c1b110d18
|
|||
|
c7a027a4d8
|
|||
| 65d5dcf137 | |||
|
567e41362b
|
|||
|
0fa6ddd870
|
|||
|
22a61e1df3
|
|||
|
d8e9dd2685
|
|||
|
400c65eec8
|
|||
|
f0931daa67
|
|||
|
e8265e45a5
|
|||
|
365fa9cd6d
|
|||
|
a10e341056
|
|||
|
ab16c9f83e
|
|||
|
182ca2bad7
|
|||
|
1508d39ed8
|
|||
| 42536befdb | |||
| d09a453f3d | |||
| 983362a69a | |||
| f4399312b4 | |||
|
b40e835215
|
|||
|
057e66f945
|
|||
|
49bc12f93b
|
|||
|
0dd09e2d5a
|
24
README.md
24
README.md
@@ -8,7 +8,7 @@ Each quarantine can be configured with a quarantine type, notification type, whi
|
|||||||
|
|
||||||
Addionally, pyquarantine-milter provides a sanitized, harmless version of the text parts of e-mails, which can be embedded in e-mail notifications. This makes it easier for users to decide, if a match is a false-positive or not. If a matching quarantine provides a quarantine ID of the original e-mail, it is also available as a template variable. This is useful if you want to add links to a webservice to notification e-mails, to give your users the ability to release e-mails or whitelist the from-address for example. The webservice then releases the e-mail from the quarantine.
|
Addionally, pyquarantine-milter provides a sanitized, harmless version of the text parts of e-mails, which can be embedded in e-mail notifications. This makes it easier for users to decide, if a match is a false-positive or not. If a matching quarantine provides a quarantine ID of the original e-mail, it is also available as a template variable. This is useful if you want to add links to a webservice to notification e-mails, to give your users the ability to release e-mails or whitelist the from-address for example. The webservice then releases the e-mail from the quarantine.
|
||||||
|
|
||||||
The project is currently in alpha status, but will soon be used in a productive enterprise environment and possibly existing bugs will be fixed.
|
The project is currently in beta status, but it is already used in a productive enterprise environment which processes about a million e-mails per month.
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
* pymilter <https://pythonhosted.org/pymilter/>
|
* pymilter <https://pythonhosted.org/pymilter/>
|
||||||
@@ -36,8 +36,8 @@ The following configuration options are mandatory in the global section:
|
|||||||
The following configuration options are mandatory in each quarantine section:
|
The following configuration options are mandatory in each quarantine section:
|
||||||
* **regex**
|
* **regex**
|
||||||
Case insensitive regular expression to filter e-mail headers.
|
Case insensitive regular expression to filter e-mail headers.
|
||||||
* **quarantine_type**
|
* **storage_type**
|
||||||
One of the quarantine-types described below.
|
One of the storage types described below.
|
||||||
* **action**
|
* **action**
|
||||||
One of the actions described below.
|
One of the actions described below.
|
||||||
* **notification_type**
|
* **notification_type**
|
||||||
@@ -50,13 +50,13 @@ The following configuration options are mandatory in each quarantine section:
|
|||||||
SMTP port
|
SMTP port
|
||||||
|
|
||||||
The following configuration options are optional in each quarantine section:
|
The following configuration options are optional in each quarantine section:
|
||||||
* **ignore_hosts**
|
* **host_whitelist**
|
||||||
Comma-separated list of host and network addresses to be ignored by this quarantine.
|
Comma-separated list of host and network addresses to be ignored by this quarantine.
|
||||||
* **reject_reason**
|
* **reject_reason**
|
||||||
Reason to return to the client if action is set to reject.
|
Reason to return to the client if action is set to reject.
|
||||||
|
|
||||||
|
|
||||||
### Quarantine types
|
### Storage types
|
||||||
* **NONE**
|
* **NONE**
|
||||||
Original e-mails scrapped, sent to nirvana, black-holed or however you want to call it.
|
Original e-mails scrapped, sent to nirvana, black-holed or however you want to call it.
|
||||||
|
|
||||||
@@ -64,7 +64,7 @@ The following configuration options are optional in each quarantine section:
|
|||||||
Original e-mails are stored on the filesystem with a unique filename. The filename is available as a
|
Original e-mails are stored on the filesystem with a unique filename. The filename is available as a
|
||||||
template variable used in notifiaction templates.
|
template variable used in notifiaction templates.
|
||||||
The following configuration options are mandatory for this quarantine type:
|
The following configuration options are mandatory for this quarantine type:
|
||||||
* **quarantine_directory**
|
* **storage_directory**
|
||||||
The directory in which quarantined e-mails are stored.
|
The directory in which quarantined e-mails are stored.
|
||||||
|
|
||||||
|
|
||||||
@@ -77,11 +77,17 @@ The following configuration options are optional in each quarantine section:
|
|||||||
|
|
||||||
The following template variables are available:
|
The following template variables are available:
|
||||||
* **{EMAIL_ENVELOPE_FROM}**
|
* **{EMAIL_ENVELOPE_FROM}**
|
||||||
E-mail from-address received by the milter.
|
E-mail sender address received by the milter.
|
||||||
|
* **{EMAIL_ENVELOPE_FROM_URL}**
|
||||||
|
Like EMAIL_ENVELOPE_FROM, but URL encoded
|
||||||
* **{EMAIL_FROM}**
|
* **{EMAIL_FROM}**
|
||||||
Value of the from header of the original e-mail.
|
Value of the FROM header of the original e-mail.
|
||||||
* **{EMAIL_TO}**
|
* **{EMAIL_ENVELOPE_TO}**
|
||||||
E-mail recipient address of this notification.
|
E-mail recipient address of this notification.
|
||||||
|
* **{EMAIL_ENVELOPE_TO_URL}**
|
||||||
|
Like EMAIL_ENVELOPE_TO, but URL encoded
|
||||||
|
* **{EMAIL_TO}**
|
||||||
|
Value of the TO header of the original e-mail.
|
||||||
* **{EMAIL_SUBJECT}**
|
* **{EMAIL_SUBJECT}**
|
||||||
Configured e-mail subject.
|
Configured e-mail subject.
|
||||||
* **{EMAIL_QUARANTINE_ID}**
|
* **{EMAIL_QUARANTINE_ID}**
|
||||||
|
|||||||
@@ -30,12 +30,12 @@ preferred_quarantine_action = last
|
|||||||
|
|
||||||
|
|
||||||
[spam]
|
[spam]
|
||||||
# Option: ignore_hosts
|
# Option: host_whitelist
|
||||||
# Notes: Set a list of host and network addresses to be ignored by this quarantine.
|
# Notes: Set a list of host and network addresses to be ignored by this quarantine.
|
||||||
# All the common host/network notations are supported, including IPv6.
|
# All the common host/network notations are supported, including IPv6.
|
||||||
# Value: [ HOST ]
|
# Value: [ HOST ]
|
||||||
#
|
#
|
||||||
ignore_hosts = 10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
|
host_whitelist = 10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
|
||||||
|
|
||||||
# Option: regex
|
# Option: regex
|
||||||
# Notes: Set the case insensitive regular expression to match against email headers.
|
# Notes: Set the case insensitive regular expression to match against email headers.
|
||||||
@@ -57,18 +57,18 @@ smtp_host = 127.0.0.1
|
|||||||
#
|
#
|
||||||
smtp_port = 25
|
smtp_port = 25
|
||||||
|
|
||||||
# Option: quarantine_type
|
# Option: storage_type
|
||||||
# Notes: Set the quarantine type.
|
# Notes: Set the storage type.
|
||||||
# Values: [ file | none ]
|
# Values: [ file | none ]
|
||||||
#
|
#
|
||||||
quarantine_type = file
|
storage_type = file
|
||||||
|
|
||||||
# Option: quarantine_directory
|
# Option: storage_directory
|
||||||
# Notes: Set the directory to store quarantined emails.
|
# Notes: Set the directory to store quarantined emails.
|
||||||
# This option is needed by quarantine type 'file'.
|
# This option is needed by quarantine type 'file'.
|
||||||
# Values: [ DIRECTORY ]
|
# Values: [ DIRECTORY ]
|
||||||
#
|
#
|
||||||
quarantine_directory = /var/lib/pyquarantine/spam
|
storage_directory = /var/lib/pyquarantine/spam
|
||||||
|
|
||||||
# Option: action
|
# Option: action
|
||||||
# Notes: Set the milter action to perform if email is processed by this quarantine.
|
# Notes: Set the milter action to perform if email is processed by this quarantine.
|
||||||
|
|||||||
4
docs/templates/notification.template
vendored
4
docs/templates/notification.template
vendored
@@ -10,6 +10,10 @@
|
|||||||
<td><b>From:</b></td>
|
<td><b>From:</b></td>
|
||||||
<td>{EMAIL_FROM}</td>
|
<td>{EMAIL_FROM}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><b>Envelope-To:</b></td>
|
||||||
|
<td>{EMAIL_ENVELOPE_TO}</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><b>To:</b></td>
|
<td><b>To:</b></td>
|
||||||
<td>{EMAIL_TO}</td>
|
<td>{EMAIL_TO}</td>
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -20,26 +20,43 @@ import logging.handlers
|
|||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
|
|
||||||
import pyquarantine
|
from pyquarantine import QuarantineMilter, setup_milter
|
||||||
|
|
||||||
from pyquarantine.version import __version__ as version
|
from pyquarantine.version import __version__ as version
|
||||||
|
|
||||||
def _get_quarantine_obj(config, quarantine):
|
|
||||||
|
def _get_quarantine(quarantines, name):
|
||||||
try:
|
try:
|
||||||
quarantine_obj = next((q["quarantine_obj"]
|
quarantine = next((q for q in quarantines if q.name == name))
|
||||||
for q in config if q["name"] == quarantine))
|
|
||||||
except StopIteration:
|
except StopIteration:
|
||||||
raise RuntimeError("invalid quarantine '{}'".format(quarantine))
|
raise RuntimeError(f"invalid quarantine 'name'")
|
||||||
return quarantine_obj
|
return quarantine
|
||||||
|
|
||||||
|
|
||||||
def _get_whitelist_obj(config, quarantine):
|
def _get_storage(quarantines, name):
|
||||||
try:
|
quarantine = _get_quarantine(quarantines, name)
|
||||||
whitelist_obj = next((q["whitelist_obj"]
|
storage = quarantine.get_storage()
|
||||||
for q in config if q["name"] == quarantine))
|
if not storage:
|
||||||
except StopIteration:
|
raise RuntimeError(
|
||||||
raise RuntimeError("invalid quarantine '{}'".format(quarantine))
|
"storage type is set to NONE")
|
||||||
return whitelist_obj
|
return storage
|
||||||
|
|
||||||
|
|
||||||
|
def _get_notification(quarantines, name):
|
||||||
|
quarantine = _get_quarantine(quarantines, name)
|
||||||
|
notification = quarantine.get_notification()
|
||||||
|
if not notification:
|
||||||
|
raise RuntimeError(
|
||||||
|
"notification type is set to NONE")
|
||||||
|
return notification
|
||||||
|
|
||||||
|
|
||||||
|
def _get_whitelist(quarantines, name):
|
||||||
|
quarantine = _get_quarantine(quarantines, name)
|
||||||
|
whitelist = quarantine.get_whitelist()
|
||||||
|
if not whitelist:
|
||||||
|
raise RuntimeError(
|
||||||
|
"whitelist type is set to NONE")
|
||||||
|
return whitelist
|
||||||
|
|
||||||
|
|
||||||
def print_table(columns, rows):
|
def print_table(columns, rows):
|
||||||
@@ -56,10 +73,10 @@ def print_table(columns, rows):
|
|||||||
# get the length of the longest value
|
# get the length of the longest value
|
||||||
lengths.append(
|
lengths.append(
|
||||||
len(str(max(rows, key=lambda x: len(str(x[key])))[key])))
|
len(str(max(rows, key=lambda x: len(str(x[key])))[key])))
|
||||||
# use the the longer one
|
# use the longer one
|
||||||
length = max(lengths)
|
length = max(lengths)
|
||||||
column_lengths.append(length)
|
column_lengths.append(length)
|
||||||
column_formats.append("{{:<{}}}".format(length))
|
column_formats.append(f"{{:<{length}}}")
|
||||||
|
|
||||||
# define row format
|
# define row format
|
||||||
row_format = " | ".join(column_formats)
|
row_format = " | ".join(column_formats)
|
||||||
@@ -83,50 +100,70 @@ def print_table(columns, rows):
|
|||||||
print(row_format.format(*row))
|
print(row_format.format(*row))
|
||||||
|
|
||||||
|
|
||||||
def list_quarantines(config, args):
|
def list_quarantines(quarantines, args):
|
||||||
if args.batch:
|
if args.batch:
|
||||||
print("\n".join([quarantine["name"] for quarantine in config]))
|
print("\n".join([q.name for q in quarantines]))
|
||||||
else:
|
else:
|
||||||
|
qlist = []
|
||||||
|
for q in quarantines:
|
||||||
|
storage = q.get_storage()
|
||||||
|
if storage:
|
||||||
|
storage_type = q.get_storage().storage_type
|
||||||
|
else:
|
||||||
|
storage_type = "NONE"
|
||||||
|
|
||||||
|
notification = q.get_notification()
|
||||||
|
if notification:
|
||||||
|
notification_type = q.get_notification().notification_type
|
||||||
|
else:
|
||||||
|
notification_type = "NONE"
|
||||||
|
|
||||||
|
whitelist = q.get_whitelist()
|
||||||
|
if whitelist:
|
||||||
|
whitelist_type = q.get_whitelist().whitelist_type
|
||||||
|
else:
|
||||||
|
whitelist_type = "NONE"
|
||||||
|
|
||||||
|
qlist.append({
|
||||||
|
"name": q.name,
|
||||||
|
"storage": storage_type,
|
||||||
|
"notification": notification_type,
|
||||||
|
"whitelist": whitelist_type,
|
||||||
|
"action": q.action})
|
||||||
print_table(
|
print_table(
|
||||||
[("Name", "name"), ("Quarantine", "quarantine_type"),
|
[("Name", "name"),
|
||||||
("Notification", "notification_type"), ("Action", "action")],
|
("Storage", "storage"),
|
||||||
config
|
("Notification", "notification"),
|
||||||
|
("Whitelist", "whitelist"),
|
||||||
|
("Action", "action")],
|
||||||
|
qlist
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def list_quarantine_emails(config, args):
|
def list_quarantine_emails(quarantines, args):
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
storage = _get_storage(quarantines, args.quarantine)
|
||||||
# get quarantine object
|
|
||||||
quarantine = _get_quarantine_obj(config, args.quarantine)
|
|
||||||
if quarantine is None:
|
|
||||||
raise RuntimeError(
|
|
||||||
"quarantine type is set to None, unable to list emails")
|
|
||||||
|
|
||||||
# find emails and transform some metadata values to strings
|
# find emails and transform some metadata values to strings
|
||||||
rows = []
|
rows = []
|
||||||
emails = quarantine.find(
|
emails = storage.find(
|
||||||
mailfrom=args.mailfrom,
|
args.mailfrom, args.recipients, args.older_than)
|
||||||
recipients=args.recipients,
|
for storage_id, metadata in emails.items():
|
||||||
older_than=args.older_than)
|
row = emails[storage_id]
|
||||||
for quarantine_id, metadata in emails.items():
|
row["storage_id"] = storage_id
|
||||||
row = emails[quarantine_id]
|
|
||||||
row["quarantine_id"] = quarantine_id
|
|
||||||
row["date"] = time.strftime(
|
row["date"] = time.strftime(
|
||||||
'%Y-%m-%d %H:%M:%S',
|
'%Y-%m-%d %H:%M:%S',
|
||||||
time.localtime(
|
time.localtime(
|
||||||
metadata["date"]))
|
metadata["date"]))
|
||||||
row["mailfrom"] = metadata["mailfrom"]
|
row["mailfrom"] = metadata["mailfrom"]
|
||||||
row["recipient"] = metadata["recipients"].pop(0)
|
row["recipient"] = metadata["recipients"].pop(0)
|
||||||
if "subject" in emails[quarantine_id]["headers"].keys():
|
if "subject" not in emails[storage_id]["headers"].keys():
|
||||||
row["subject"] = emails[quarantine_id]["headers"]["subject"][:60]
|
emails[storage_id]["headers"]["subject"] = ""
|
||||||
else
|
row["subject"] = emails[storage_id]["headers"]["subject"][:60].strip()
|
||||||
row["subject"] = ""
|
|
||||||
rows.append(row)
|
rows.append(row)
|
||||||
|
|
||||||
if metadata["recipients"]:
|
if metadata["recipients"]:
|
||||||
row = {
|
row = {
|
||||||
"quarantine_id": "",
|
"storage_id": "",
|
||||||
"date": "",
|
"date": "",
|
||||||
"mailfrom": "",
|
"mailfrom": "",
|
||||||
"recipient": metadata["recipients"].pop(0),
|
"recipient": metadata["recipients"].pop(0),
|
||||||
@@ -140,23 +177,18 @@ def list_quarantine_emails(config, args):
|
|||||||
return
|
return
|
||||||
|
|
||||||
if not emails:
|
if not emails:
|
||||||
logger.info("quarantine '{}' is empty".format(args.quarantine))
|
logger.info(f"quarantine '{args.quarantine}' is empty")
|
||||||
print_table(
|
print_table(
|
||||||
[("Quarantine-ID", "quarantine_id"), ("Date", "date"),
|
[("Quarantine-ID", "storage_id"), ("Date", "date"),
|
||||||
("From", "mailfrom"), ("Recipient(s)", "recipient"),
|
("From", "mailfrom"), ("Recipient(s)", "recipient"),
|
||||||
("Subject", "subject")],
|
("Subject", "subject")],
|
||||||
rows
|
rows
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def list_whitelist(config, args):
|
def list_whitelist(quarantines, args):
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
whitelist = _get_whitelist(quarantines, args.quarantine)
|
||||||
# get whitelist object
|
|
||||||
whitelist = _get_whitelist_obj(config, args.quarantine)
|
|
||||||
if whitelist is None:
|
|
||||||
raise RuntimeError(
|
|
||||||
"whitelist type is set to None, unable to list entries")
|
|
||||||
|
|
||||||
# find whitelist entries
|
# find whitelist entries
|
||||||
entries = whitelist.find(
|
entries = whitelist.find(
|
||||||
@@ -165,8 +197,7 @@ def list_whitelist(config, args):
|
|||||||
older_than=args.older_than)
|
older_than=args.older_than)
|
||||||
if not entries:
|
if not entries:
|
||||||
logger.info(
|
logger.info(
|
||||||
"whitelist of quarantine '{}' is empty".format(
|
f"whitelist of quarantine '{args.quarantine}' is empty")
|
||||||
args.quarantine))
|
|
||||||
return
|
return
|
||||||
|
|
||||||
# transform some values to strings
|
# transform some values to strings
|
||||||
@@ -187,14 +218,9 @@ def list_whitelist(config, args):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def add_whitelist_entry(config, args):
|
def add_whitelist_entry(quarantines, args):
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
whitelist = _get_whitelist(quarantines, args.quarantine)
|
||||||
# get whitelist object
|
|
||||||
whitelist = _get_whitelist_obj(config, args.quarantine)
|
|
||||||
if whitelist is None:
|
|
||||||
raise RuntimeError(
|
|
||||||
"whitelist type is set to None, unable to add entries")
|
|
||||||
|
|
||||||
# check existing entries
|
# check existing entries
|
||||||
entries = whitelist.check(args.mailfrom, args.recipient)
|
entries = whitelist.check(args.mailfrom, args.recipient)
|
||||||
@@ -232,50 +258,31 @@ def add_whitelist_entry(config, args):
|
|||||||
logger.info("whitelist entry added successfully")
|
logger.info("whitelist entry added successfully")
|
||||||
|
|
||||||
|
|
||||||
def delete_whitelist_entry(config, args):
|
def delete_whitelist_entry(quarantines, args):
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
whitelist = _get_whitelist(quarantines, args.quarantine)
|
||||||
whitelist = _get_whitelist_obj(config, args.quarantine)
|
|
||||||
if whitelist is None:
|
|
||||||
raise RuntimeError(
|
|
||||||
"whitelist type is set to None, unable to delete entries")
|
|
||||||
|
|
||||||
whitelist.delete(args.whitelist_id)
|
whitelist.delete(args.whitelist_id)
|
||||||
logger.info("whitelist entry deleted successfully")
|
logger.info("whitelist entry deleted successfully")
|
||||||
|
|
||||||
|
|
||||||
def notify_email(config, args):
|
def notify(quarantines, args):
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
quarantine = _get_quarantine(quarantines, args.quarantine)
|
||||||
quarantine = _get_quarantine_obj(config, args.quarantine)
|
|
||||||
if quarantine is None:
|
|
||||||
raise RuntimeError(
|
|
||||||
"quarantine type is set to None, unable to send notification")
|
|
||||||
quarantine.notify(args.quarantine_id, args.recipient)
|
quarantine.notify(args.quarantine_id, args.recipient)
|
||||||
logger.info("sent notification successfully")
|
logger.info("notification sent successfully")
|
||||||
|
|
||||||
|
|
||||||
def release_email(config, args):
|
def release(quarantines, args):
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
quarantine = _get_quarantine(quarantines, args.quarantine)
|
||||||
quarantine = _get_quarantine_obj(config, args.quarantine)
|
|
||||||
if quarantine is None:
|
|
||||||
raise RuntimeError(
|
|
||||||
"quarantine type is set to None, unable to release email")
|
|
||||||
|
|
||||||
quarantine.release(args.quarantine_id, args.recipient)
|
quarantine.release(args.quarantine_id, args.recipient)
|
||||||
logger.info("quarantined email released successfully")
|
logger.info("quarantined email released successfully")
|
||||||
|
|
||||||
|
|
||||||
def delete_email(config, args):
|
def delete(quarantines, args):
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
storage = _get_storage(quarantines, args.quarantine)
|
||||||
quarantine = _get_quarantine_obj(config, args.quarantine)
|
storage.delete(args.quarantine_id, args.recipient)
|
||||||
if quarantine is None:
|
|
||||||
raise RuntimeError(
|
|
||||||
"quarantine type is set to None, unable to delete email")
|
|
||||||
|
|
||||||
quarantine.delete(args.quarantine_id, args.recipient)
|
|
||||||
logger.info("quarantined email deleted successfully")
|
logger.info("quarantined email deleted successfully")
|
||||||
|
|
||||||
|
|
||||||
@@ -301,7 +308,7 @@ def main():
|
|||||||
"-c", "--config",
|
"-c", "--config",
|
||||||
help="Config files to read.",
|
help="Config files to read.",
|
||||||
nargs="+", metavar="CFG",
|
nargs="+", metavar="CFG",
|
||||||
default=pyquarantine.QuarantineMilter.get_configfiles())
|
default=QuarantineMilter.get_cfg_files())
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-d", "--debug",
|
"-d", "--debug",
|
||||||
help="Log debugging messages.",
|
help="Log debugging messages.",
|
||||||
@@ -310,7 +317,7 @@ def main():
|
|||||||
"-v", "--version",
|
"-v", "--version",
|
||||||
help="Print version.",
|
help="Print version.",
|
||||||
action="version",
|
action="version",
|
||||||
version="%(prog)s ({})".format(version))
|
version=f"%(prog)s ({version})")
|
||||||
parser.set_defaults(syslog=False)
|
parser.set_defaults(syslog=False)
|
||||||
subparsers = parser.add_subparsers(
|
subparsers = parser.add_subparsers(
|
||||||
dest="command",
|
dest="command",
|
||||||
@@ -391,7 +398,7 @@ def main():
|
|||||||
"-a", "--all",
|
"-a", "--all",
|
||||||
help="Release email for all recipients.",
|
help="Release email for all recipients.",
|
||||||
action="store_true")
|
action="store_true")
|
||||||
quarantine_notify_parser.set_defaults(func=notify_email)
|
quarantine_notify_parser.set_defaults(func=notify)
|
||||||
# quarantine release command
|
# quarantine release command
|
||||||
quarantine_release_parser = quarantine_subparsers.add_parser(
|
quarantine_release_parser = quarantine_subparsers.add_parser(
|
||||||
"release",
|
"release",
|
||||||
@@ -418,7 +425,7 @@ def main():
|
|||||||
"-a", "--all",
|
"-a", "--all",
|
||||||
help="Release email for all recipients.",
|
help="Release email for all recipients.",
|
||||||
action="store_true")
|
action="store_true")
|
||||||
quarantine_release_parser.set_defaults(func=release_email)
|
quarantine_release_parser.set_defaults(func=release)
|
||||||
# quarantine delete command
|
# quarantine delete command
|
||||||
quarantine_delete_parser = quarantine_subparsers.add_parser(
|
quarantine_delete_parser = quarantine_subparsers.add_parser(
|
||||||
"delete",
|
"delete",
|
||||||
@@ -444,7 +451,7 @@ def main():
|
|||||||
"-a", "--all",
|
"-a", "--all",
|
||||||
help="Delete email for all recipients.",
|
help="Delete email for all recipients.",
|
||||||
action="store_true")
|
action="store_true")
|
||||||
quarantine_delete_parser.set_defaults(func=delete_email)
|
quarantine_delete_parser.set_defaults(func=delete)
|
||||||
|
|
||||||
# whitelist command group
|
# whitelist command group
|
||||||
whitelist_parser = subparsers.add_parser(
|
whitelist_parser = subparsers.add_parser(
|
||||||
@@ -555,8 +562,8 @@ def main():
|
|||||||
|
|
||||||
# try to generate milter configs
|
# try to generate milter configs
|
||||||
try:
|
try:
|
||||||
global_config, config = pyquarantine.generate_milter_config(
|
setup_milter(
|
||||||
config_files=args.config, configtest=True)
|
cfg_files=args.config, test=True)
|
||||||
except RuntimeError as e:
|
except RuntimeError as e:
|
||||||
logger.error(e)
|
logger.error(e)
|
||||||
sys.exit(255)
|
sys.exit(255)
|
||||||
@@ -577,7 +584,7 @@ def main():
|
|||||||
|
|
||||||
# call the commands function
|
# call the commands function
|
||||||
try:
|
try:
|
||||||
args.func(config, args)
|
args.func(QuarantineMilter.quarantines, args)
|
||||||
except RuntimeError as e:
|
except RuntimeError as e:
|
||||||
logger.error(e)
|
logger.error(e)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|||||||
@@ -14,7 +14,6 @@
|
|||||||
|
|
||||||
import logging
|
import logging
|
||||||
import smtplib
|
import smtplib
|
||||||
import sys
|
|
||||||
|
|
||||||
from multiprocessing import Process, Queue
|
from multiprocessing import Process, Queue
|
||||||
|
|
||||||
@@ -45,23 +44,22 @@ def mailprocess():
|
|||||||
if not m:
|
if not m:
|
||||||
break
|
break
|
||||||
|
|
||||||
smtp_host, smtp_port, queueid, mailfrom, recipient, mail, emailtype = m
|
smtp_host, smtp_port, qid, mailfrom, recipient, mail, emailtype = m
|
||||||
try:
|
try:
|
||||||
smtp_send(smtp_host, smtp_port, mailfrom, recipient, mail)
|
smtp_send(smtp_host, smtp_port, mailfrom, recipient, mail)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error(
|
logger.error(
|
||||||
"{}: error while sending {} to '{}': {}".format(
|
f"{qid}: error while sending {emailtype} "
|
||||||
queueid, emailtype, recipient, e))
|
f"to '{recipient}': {e}")
|
||||||
else:
|
else:
|
||||||
logger.info(
|
logger.info(
|
||||||
"{}: successfully sent {} to: {}".format(
|
f"{qid}: successfully sent {emailtype} to: {recipient}")
|
||||||
queueid, emailtype, recipient))
|
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
pass
|
pass
|
||||||
logger.debug("mailer process terminated")
|
logger.debug("mailer process terminated")
|
||||||
|
|
||||||
|
|
||||||
def sendmail(smtp_host, smtp_port, queueid, mailfrom, recipients, mail,
|
def sendmail(smtp_host, smtp_port, qid, mailfrom, recipients, mail,
|
||||||
emailtype="email"):
|
emailtype="email"):
|
||||||
"Send an email."
|
"Send an email."
|
||||||
global logger
|
global logger
|
||||||
@@ -81,8 +79,8 @@ def sendmail(smtp_host, smtp_port, queueid, mailfrom, recipients, mail,
|
|||||||
for recipient in recipients:
|
for recipient in recipients:
|
||||||
try:
|
try:
|
||||||
queue.put(
|
queue.put(
|
||||||
(smtp_host, smtp_port, queueid, mailfrom, recipient, mail,
|
(smtp_host, smtp_port, qid, mailfrom, recipient, mail,
|
||||||
emailtype),
|
emailtype),
|
||||||
timeout=30)
|
timeout=30)
|
||||||
except Queue.Full as e:
|
except Queue.Full:
|
||||||
raise RuntimeError("email queue is full")
|
raise RuntimeError("email queue is full")
|
||||||
|
|||||||
@@ -19,24 +19,25 @@ import re
|
|||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
from cgi import escape
|
from cgi import escape
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
|
from email.policy import default as default_policy
|
||||||
from email.mime.multipart import MIMEMultipart
|
from email.mime.multipart import MIMEMultipart
|
||||||
from email.mime.text import MIMEText
|
from email.mime.text import MIMEText
|
||||||
from email.mime.image import MIMEImage
|
from email.mime.image import MIMEImage
|
||||||
from os.path import basename
|
from os.path import basename
|
||||||
|
from urllib.parse import quote
|
||||||
|
|
||||||
from pyquarantine import mailer
|
from pyquarantine import mailer
|
||||||
|
|
||||||
|
|
||||||
class BaseNotification(object):
|
class BaseNotification(object):
|
||||||
"Notification base class"
|
"Notification base class"
|
||||||
|
notification_type = "base"
|
||||||
|
|
||||||
def __init__(self, global_config, config, configtest=False):
|
def __init__(self, name, global_cfg, cfg, test=False):
|
||||||
self.quarantine_name = config["name"]
|
self.name = name
|
||||||
self.global_config = global_config
|
|
||||||
self.config = config
|
|
||||||
self.logger = logging.getLogger(__name__)
|
self.logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
def notify(self, queueid, quarantine_id, mailfrom, recipients, headers,
|
def notify(self, qid, storage_id, mailfrom, recipients, headers,
|
||||||
fp, subgroups=None, named_subgroups=None, synchronous=False):
|
fp, subgroups=None, named_subgroups=None, synchronous=False):
|
||||||
fp.seek(0)
|
fp.seek(0)
|
||||||
pass
|
pass
|
||||||
@@ -44,8 +45,7 @@ class BaseNotification(object):
|
|||||||
|
|
||||||
class EMailNotification(BaseNotification):
|
class EMailNotification(BaseNotification):
|
||||||
"Notification class to send notifications via mail."
|
"Notification class to send notifications via mail."
|
||||||
_html_text = "text/html"
|
notification_type = "email"
|
||||||
_plain_text = "text/plain"
|
|
||||||
_bad_tags = [
|
_bad_tags = [
|
||||||
"applet",
|
"applet",
|
||||||
"embed",
|
"embed",
|
||||||
@@ -109,44 +109,40 @@ class EMailNotification(BaseNotification):
|
|||||||
"width"
|
"width"
|
||||||
]
|
]
|
||||||
|
|
||||||
def __init__(self, global_config, config, configtest=False):
|
def __init__(self, name, global_cfg, cfg, test=False):
|
||||||
super(EMailNotification, self).__init__(
|
super(EMailNotification, self).__init__(
|
||||||
global_config, config, configtest)
|
name, global_cfg, cfg, test)
|
||||||
|
|
||||||
# check if mandatory options are present in config
|
defaults = {
|
||||||
for option in [
|
"notification_email_replacement_img": "",
|
||||||
|
"notification_email_strip_images": "false",
|
||||||
|
"notification_email_parser_lib": "lxml"
|
||||||
|
}
|
||||||
|
# check config
|
||||||
|
for opt in [
|
||||||
"notification_email_smtp_host",
|
"notification_email_smtp_host",
|
||||||
"notification_email_smtp_port",
|
"notification_email_smtp_port",
|
||||||
"notification_email_envelope_from",
|
"notification_email_envelope_from",
|
||||||
"notification_email_from",
|
"notification_email_from",
|
||||||
"notification_email_subject",
|
"notification_email_subject",
|
||||||
"notification_email_template",
|
"notification_email_template",
|
||||||
"notification_email_embedded_imgs"]:
|
"notification_email_embedded_imgs"] + list(defaults.keys()):
|
||||||
if option not in self.config.keys() and option in self.global_config.keys():
|
if opt in cfg:
|
||||||
self.config[option] = self.global_config[option]
|
continue
|
||||||
if option not in self.config.keys():
|
if opt in global_cfg:
|
||||||
|
cfg[opt] = global_cfg[opt]
|
||||||
|
elif opt in defaults:
|
||||||
|
cfg[opt] = defaults[opt]
|
||||||
|
else:
|
||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
"mandatory option '{}' not present in config section '{}' or 'global'".format(
|
f"mandatory option '{opt}' not present in config "
|
||||||
option, self.quarantine_name))
|
f"section '{self.name}' or 'global'")
|
||||||
|
|
||||||
# check if optional config options are present in config
|
self.smtp_host = cfg["notification_email_smtp_host"]
|
||||||
defaults = {
|
self.smtp_port = cfg["notification_email_smtp_port"]
|
||||||
"notification_email_replacement_img": "",
|
self.mailfrom = cfg["notification_email_envelope_from"]
|
||||||
"notification_email_strip_images": "false",
|
self.from_header = cfg["notification_email_from"]
|
||||||
"notification_email_parser_lib": "lxml"
|
self.subject = cfg["notification_email_subject"]
|
||||||
}
|
|
||||||
for option in defaults.keys():
|
|
||||||
if option not in config.keys() and \
|
|
||||||
option in global_config.keys():
|
|
||||||
config[option] = global_config[option]
|
|
||||||
if option not in config.keys():
|
|
||||||
config[option] = defaults[option]
|
|
||||||
|
|
||||||
self.smtp_host = self.config["notification_email_smtp_host"]
|
|
||||||
self.smtp_port = self.config["notification_email_smtp_port"]
|
|
||||||
self.mailfrom = self.config["notification_email_envelope_from"]
|
|
||||||
self.from_header = self.config["notification_email_from"]
|
|
||||||
self.subject = self.config["notification_email_subject"]
|
|
||||||
|
|
||||||
testvars = defaultdict(str, test="TEST")
|
testvars = defaultdict(str, test="TEST")
|
||||||
|
|
||||||
@@ -155,46 +151,48 @@ class EMailNotification(BaseNotification):
|
|||||||
self.from_header.format_map(testvars)
|
self.from_header.format_map(testvars)
|
||||||
except ValueError as e:
|
except ValueError as e:
|
||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
"error parsing notification_email_from: {}".format(e))
|
f"error parsing notification_email_from: {e}")
|
||||||
|
|
||||||
# test-parse subject
|
# test-parse subject
|
||||||
try:
|
try:
|
||||||
self.subject.format_map(testvars)
|
self.subject.format_map(testvars)
|
||||||
except ValueError as e:
|
except ValueError as e:
|
||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
"error parsing notification_email_subject: {}".format(e))
|
f"error parsing notification_email_subject: {e}")
|
||||||
|
|
||||||
# read and parse email notification template
|
# read and parse email notification template
|
||||||
try:
|
try:
|
||||||
self.template = open(
|
self.template = open(
|
||||||
self.config["notification_email_template"], "r").read()
|
cfg["notification_email_template"], "r").read()
|
||||||
self.template.format_map(testvars)
|
self.template.format_map(testvars)
|
||||||
except IOError as e:
|
except IOError as e:
|
||||||
raise RuntimeError("error reading template: {}".format(e))
|
raise RuntimeError(f"error reading template: {e}")
|
||||||
except ValueError as e:
|
except ValueError as e:
|
||||||
raise RuntimeError("error parsing template: {}".format(e))
|
raise RuntimeError(f"error parsing template: {e}")
|
||||||
|
|
||||||
strip_images = self.config["notification_email_strip_images"].strip().upper()
|
strip_images = cfg["notification_email_strip_images"].strip().upper()
|
||||||
if strip_images in ["TRUE", "ON", "YES"]:
|
if strip_images in ["TRUE", "ON", "YES"]:
|
||||||
self.strip_images = True
|
self.strip_images = True
|
||||||
elif strip_images in ["FALSE", "OFF", "NO"]:
|
elif strip_images in ["FALSE", "OFF", "NO"]:
|
||||||
self.strip_images = False
|
self.strip_images = False
|
||||||
else:
|
else:
|
||||||
raise RuntimeError("error parsing notification_email_strip_images: unknown value")
|
raise RuntimeError(
|
||||||
|
"error parsing notification_email_strip_images: unknown value")
|
||||||
|
|
||||||
self.parser_lib = self.config["notification_email_parser_lib"].strip()
|
self.parser_lib = cfg["notification_email_parser_lib"].strip()
|
||||||
if self.parser_lib not in ["lxml", "html.parser"]:
|
if self.parser_lib not in ["lxml", "html.parser"]:
|
||||||
raise RuntimeError("error parsing notification_email_parser_lib: unknown value")
|
raise RuntimeError(
|
||||||
|
"error parsing notification_email_parser_lib: unknown value")
|
||||||
|
|
||||||
# read email replacement image if specified
|
# read email replacement image if specified
|
||||||
replacement_img = self.config["notification_email_replacement_img"].strip()
|
replacement_img = cfg["notification_email_replacement_img"].strip()
|
||||||
if not self.strip_images and replacement_img:
|
if not self.strip_images and replacement_img:
|
||||||
try:
|
try:
|
||||||
self.replacement_img = MIMEImage(
|
self.replacement_img = MIMEImage(
|
||||||
open(replacement_img, "rb").read())
|
open(replacement_img, "rb").read())
|
||||||
except IOError as e:
|
except IOError as e:
|
||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
"error reading replacement image: {}".format(e))
|
f"error reading replacement image: {e}")
|
||||||
else:
|
else:
|
||||||
self.replacement_img.add_header(
|
self.replacement_img.add_header(
|
||||||
"Content-ID", "<removed_for_security_reasons>")
|
"Content-ID", "<removed_for_security_reasons>")
|
||||||
@@ -203,77 +201,86 @@ class EMailNotification(BaseNotification):
|
|||||||
|
|
||||||
# read images to embed if specified
|
# read images to embed if specified
|
||||||
embedded_img_paths = [
|
embedded_img_paths = [
|
||||||
p.strip() for p in self.config["notification_email_embedded_imgs"].split(",") if p]
|
p.strip() for p in cfg["notification_email_embedded_imgs"].split(
|
||||||
|
",") if p]
|
||||||
self.embedded_imgs = []
|
self.embedded_imgs = []
|
||||||
for img_path in embedded_img_paths:
|
for img_path in embedded_img_paths:
|
||||||
# read image
|
# read image
|
||||||
try:
|
try:
|
||||||
img = MIMEImage(open(img_path, "rb").read())
|
img = MIMEImage(open(img_path, "rb").read())
|
||||||
except IOError as e:
|
except IOError as e:
|
||||||
raise RuntimeError("error reading image: {}".format(e))
|
raise RuntimeError(f"error reading image: {e}")
|
||||||
else:
|
else:
|
||||||
img.add_header("Content-ID", "<{}>".format(basename(img_path)))
|
filename = basename(img_path)
|
||||||
|
img.add_header(f"Content-ID", f"<{filename}>")
|
||||||
self.embedded_imgs.append(img)
|
self.embedded_imgs.append(img)
|
||||||
|
|
||||||
def get_decoded_email_body(self, queueid, msg, preferred=_html_text):
|
def get_email_body_soup(self, qid, msg):
|
||||||
"Find and decode email body."
|
"Extract and decode email body and return it as BeautifulSoup object."
|
||||||
# try to find the body part
|
# try to find the body part
|
||||||
self.logger.debug("{}: trying to find email body".format(queueid))
|
self.logger.debug(f"{qid}: trying to find email body")
|
||||||
body = None
|
try:
|
||||||
for part in msg.walk():
|
body = msg.get_body(preferencelist=("html", "plain"))
|
||||||
content_type = part.get_content_type()
|
except Exception as e:
|
||||||
if content_type in [EMailNotification._plain_text,
|
self.logger.error(
|
||||||
EMailNotification._html_text]:
|
f"{qid}: an error occured in "
|
||||||
body = part
|
f"email.message.EmailMessage.get_body: {e}")
|
||||||
if content_type == preferred:
|
body = None
|
||||||
break
|
|
||||||
|
|
||||||
if body is not None:
|
|
||||||
# get the character set, fallback to utf-8 if not defined in header
|
|
||||||
charset = body.get_content_charset()
|
|
||||||
if charset is None:
|
|
||||||
charset = "utf-8"
|
|
||||||
|
|
||||||
# decode content
|
|
||||||
content = body.get_payload(decode=True).decode(
|
|
||||||
encoding=charset, errors="replace")
|
|
||||||
|
|
||||||
|
if body:
|
||||||
|
charset = body.get_content_charset() or "utf-8"
|
||||||
|
content = body.get_payload(decode=True)
|
||||||
|
try:
|
||||||
|
content = content.decode(encoding=charset, errors="replace")
|
||||||
|
except LookupError:
|
||||||
|
self.logger.info(
|
||||||
|
f"{qid}: unknown encoding '{charset}', "
|
||||||
|
f"falling back to UTF-8")
|
||||||
|
content = content.decode("utf-8", errors="replace")
|
||||||
content_type = body.get_content_type()
|
content_type = body.get_content_type()
|
||||||
if content_type == EMailNotification._plain_text:
|
if content_type == "text/plain":
|
||||||
# convert text/plain to text/html
|
# convert text/plain to text/html
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
"{}: content type is {}, converting to {}".format(
|
f"{qid}: content type is {content_type}, "
|
||||||
queueid, content_type, EMailNotification._html_text))
|
f"converting to text/html")
|
||||||
content = re.sub(r"^(.*)$", r"\1<br/>",
|
content = re.sub(r"^(.*)$", r"\1<br/>",
|
||||||
escape(content), flags=re.MULTILINE)
|
escape(content), flags=re.MULTILINE)
|
||||||
else:
|
else:
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
"{}: content type is {}".format(
|
f"{qid}: content type is {content_type}")
|
||||||
queueid, content_type))
|
|
||||||
else:
|
else:
|
||||||
self.logger.error(
|
self.logger.error(
|
||||||
"{}: unable to find email body".format(queueid))
|
f"{qid}: unable to find email body")
|
||||||
content = "ERROR: unable to find email body"
|
content = "ERROR: unable to find email body"
|
||||||
|
|
||||||
return content
|
# create BeautifulSoup object
|
||||||
|
length = len(content)
|
||||||
|
self.logger.debug(
|
||||||
|
f"{qid}: trying to create BeatufilSoup object with "
|
||||||
|
f"parser lib {self.parser_lib}, "
|
||||||
|
f"text length is {length} bytes")
|
||||||
|
soup = BeautifulSoup(content, self.parser_lib)
|
||||||
|
self.logger.debug(
|
||||||
|
f"{qid}: sucessfully created BeautifulSoup object")
|
||||||
|
|
||||||
def sanitize(self, queueid, soup):
|
return soup
|
||||||
|
|
||||||
|
def sanitize(self, qid, soup):
|
||||||
"Sanitize mail html text."
|
"Sanitize mail html text."
|
||||||
self.logger.debug("{}: sanitizing email text".format(queueid))
|
self.logger.debug(f"{qid}: sanitizing email text")
|
||||||
|
|
||||||
# completly remove bad elements
|
# completly remove bad elements
|
||||||
for element in soup(EMailNotification._bad_tags):
|
for element in soup(EMailNotification._bad_tags):
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
"{}: removing dangerous tag '{}' and its content".format(
|
f"{qid}: removing dangerous tag '{element.name}' "
|
||||||
queueid, element.name))
|
f"and its content")
|
||||||
element.extract()
|
element.extract()
|
||||||
|
|
||||||
# remove not whitelisted elements, but keep their content
|
# remove not whitelisted elements, but keep their content
|
||||||
for element in soup.find_all(True):
|
for element in soup.find_all(True):
|
||||||
if element.name not in EMailNotification._good_tags:
|
if element.name not in EMailNotification._good_tags:
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
"{}: removing tag '{}', keep its content".format(
|
f"{qid}: removing tag '{element.name}', keep its content")
|
||||||
queueid, element.name))
|
|
||||||
element.replaceWithChildren()
|
element.replaceWithChildren()
|
||||||
|
|
||||||
# remove not whitelisted attributes
|
# remove not whitelisted attributes
|
||||||
@@ -282,24 +289,24 @@ class EMailNotification(BaseNotification):
|
|||||||
if attribute not in EMailNotification._good_attributes:
|
if attribute not in EMailNotification._good_attributes:
|
||||||
if element.name == "a" and attribute == "href":
|
if element.name == "a" and attribute == "href":
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
"{}: setting attribute href to '#' on tag '{}'".format(
|
f"{qid}: setting attribute href to '#' "
|
||||||
queueid, element.name))
|
f"on tag '{element.name}'")
|
||||||
element["href"] = "#"
|
element["href"] = "#"
|
||||||
else:
|
else:
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
"{}: removing attribute '{}' from tag '{}'".format(
|
f"{qid}: removing attribute '{attribute}' "
|
||||||
queueid, attribute, element.name))
|
f"from tag '{element.name}'")
|
||||||
del(element.attrs[attribute])
|
del(element.attrs[attribute])
|
||||||
return soup
|
return soup
|
||||||
|
|
||||||
def notify(self, queueid, quarantine_id, mailfrom, recipients, headers, fp,
|
def notify(self, qid, storage_id, mailfrom, recipients, headers, fp,
|
||||||
subgroups=None, named_subgroups=None, synchronous=False):
|
subgroups=None, named_subgroups=None, synchronous=False):
|
||||||
"Notify recipients via email."
|
"Notify recipients via email."
|
||||||
super(
|
super(
|
||||||
EMailNotification,
|
EMailNotification,
|
||||||
self).notify(
|
self).notify(
|
||||||
queueid,
|
qid,
|
||||||
quarantine_id,
|
storage_id,
|
||||||
mailfrom,
|
mailfrom,
|
||||||
recipients,
|
recipients,
|
||||||
headers,
|
headers,
|
||||||
@@ -309,69 +316,56 @@ class EMailNotification(BaseNotification):
|
|||||||
synchronous)
|
synchronous)
|
||||||
|
|
||||||
# extract body from email
|
# extract body from email
|
||||||
content = self.get_decoded_email_body(
|
soup = self.get_email_body_soup(
|
||||||
queueid, email.message_from_binary_file(fp))
|
qid, email.message_from_binary_file(fp, policy=default_policy))
|
||||||
|
|
||||||
# create BeautifulSoup object
|
|
||||||
self.logger.debug(
|
|
||||||
"{}: trying to create BeatufilSoup object with parser lib {}, "
|
|
||||||
"text length is {} bytes".format(
|
|
||||||
queueid, self.parser_lib, len(content)))
|
|
||||||
soup = BeautifulSoup(content, self.parser_lib)
|
|
||||||
self.logger.debug(
|
|
||||||
"{}: sucessfully created BeautifulSoup object".format(queueid))
|
|
||||||
|
|
||||||
# replace picture sources
|
# replace picture sources
|
||||||
image_replaced = False
|
image_replaced = False
|
||||||
if self.strip_images:
|
if self.strip_images:
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
"{}: looking for images to strip".format(queueid))
|
f"{qid}: looking for images to strip")
|
||||||
for element in soup("img"):
|
for element in soup("img"):
|
||||||
if "src" in element.attrs.keys():
|
if "src" in element.attrs.keys():
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
"{}: strip image: {}".format(
|
f"{qid}: strip image: {element['src']}")
|
||||||
queueid, element["src"]))
|
|
||||||
element.extract()
|
element.extract()
|
||||||
elif self.replacement_img:
|
elif self.replacement_img:
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
"{}: looking for images to replace".format(queueid))
|
f"{qid}: looking for images to replace")
|
||||||
for element in soup("img"):
|
for element in soup("img"):
|
||||||
if "src" in element.attrs.keys():
|
if "src" in element.attrs.keys():
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
"{}: replacing image: {}".format(
|
f"{qid}: replacing image: {element['src']}")
|
||||||
queueid, element["src"]))
|
|
||||||
element["src"] = "cid:removed_for_security_reasons"
|
element["src"] = "cid:removed_for_security_reasons"
|
||||||
image_replaced = True
|
image_replaced = True
|
||||||
|
|
||||||
# sanitizing email text of original email
|
# sanitizing email text of original email
|
||||||
sanitized_text = self.sanitize(queueid, soup)
|
sanitized_text = self.sanitize(qid, soup)
|
||||||
del soup
|
del soup
|
||||||
|
|
||||||
# sending email notifications
|
# sending email notifications
|
||||||
for recipient in recipients:
|
for recipient in recipients:
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
"{}: generating notification email for '{}'".format(
|
f"{qid}: generating notification email for '{recipient}'")
|
||||||
queueid, recipient))
|
self.logger.debug(f"{qid}: parsing email template")
|
||||||
self.logger.debug("{}: parsing email template".format(queueid))
|
|
||||||
if "from" not in headers.keys():
|
|
||||||
headers["from"] = ""
|
|
||||||
if "to" not in headers.keys():
|
|
||||||
headers["to"] = ""
|
|
||||||
if "subject" not in headers.keys():
|
|
||||||
headers["subject"] = ""
|
|
||||||
# generate dict containing all template variables
|
# generate dict containing all template variables
|
||||||
variables = defaultdict(str,
|
variables = defaultdict(
|
||||||
EMAIL_HTML_TEXT=sanitized_text,
|
str,
|
||||||
EMAIL_FROM=escape(headers["from"]),
|
EMAIL_HTML_TEXT=sanitized_text,
|
||||||
EMAIL_ENVELOPE_FROM=escape(mailfrom),
|
EMAIL_FROM=escape(headers["from"]),
|
||||||
EMAIL_TO=escape(recipient),
|
EMAIL_ENVELOPE_FROM=escape(mailfrom),
|
||||||
EMAIL_SUBJECT=escape(headers["subject"]),
|
EMAIL_ENVELOPE_FROM_URL=escape(quote(mailfrom)),
|
||||||
EMAIL_QUARANTINE_ID=quarantine_id)
|
EMAIL_TO=escape(headers["to"]),
|
||||||
|
EMAIL_ENVELOPE_TO=escape(recipient),
|
||||||
|
EMAIL_ENVELOPE_TO_URL=escape(quote(recipient)),
|
||||||
|
EMAIL_SUBJECT=escape(headers["subject"]),
|
||||||
|
EMAIL_QUARANTINE_ID=storage_id)
|
||||||
|
|
||||||
if subgroups:
|
if subgroups:
|
||||||
number = 0
|
number = 0
|
||||||
for subgroup in subgroups:
|
for subgroup in subgroups:
|
||||||
variables["SUBGROUP_{}".format(number)] = escape(subgroup)
|
variables[f"SUBGROUP_{number}"] = escape(subgroup)
|
||||||
if named_subgroups:
|
if named_subgroups:
|
||||||
for key, value in named_subgroups.items():
|
for key, value in named_subgroups.items():
|
||||||
named_subgroups[key] = escape(value)
|
named_subgroups[key] = escape(value)
|
||||||
@@ -391,26 +385,24 @@ class EMailNotification(BaseNotification):
|
|||||||
|
|
||||||
if image_replaced:
|
if image_replaced:
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
"{}: attaching notification_replacement_img".format(queueid))
|
f"{qid}: attaching notification_replacement_img")
|
||||||
msg.attach(self.replacement_img)
|
msg.attach(self.replacement_img)
|
||||||
|
|
||||||
for img in self.embedded_imgs:
|
for img in self.embedded_imgs:
|
||||||
self.logger.debug("{}: attaching imgage".format(queueid))
|
self.logger.debug(f"{qid}: attaching imgage")
|
||||||
msg.attach(img)
|
msg.attach(img)
|
||||||
|
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
"{}: sending notification email to: {}".format(
|
f"{qid}: sending notification email to: {recipient}")
|
||||||
queueid, recipient))
|
|
||||||
if synchronous:
|
if synchronous:
|
||||||
try:
|
try:
|
||||||
mailer.smtp_send(self.smtp_host, self.smtp_port,
|
mailer.smtp_send(self.smtp_host, self.smtp_port,
|
||||||
self.mailfrom, recipient, msg.as_string())
|
self.mailfrom, recipient, msg.as_string())
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
"error while sending email to '{}': {}".format(
|
f"error while sending email to '{recipient}': {e}")
|
||||||
recipient, e))
|
|
||||||
else:
|
else:
|
||||||
mailer.sendmail(self.smtp_host, self.smtp_port, queueid,
|
mailer.sendmail(self.smtp_host, self.smtp_port, qid,
|
||||||
self.mailfrom, recipient, msg.as_string(),
|
self.mailfrom, recipient, msg.as_string(),
|
||||||
"notification email")
|
"notification email")
|
||||||
|
|
||||||
|
|||||||
@@ -1,309 +0,0 @@
|
|||||||
# PyQuarantine-Milter is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation, either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# PyQuarantine-Milter is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with PyQuarantineMilter. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
|
|
||||||
import json
|
|
||||||
import logging
|
|
||||||
import os
|
|
||||||
|
|
||||||
from calendar import timegm
|
|
||||||
from datetime import datetime
|
|
||||||
from glob import glob
|
|
||||||
from shutil import copyfileobj
|
|
||||||
from time import gmtime
|
|
||||||
|
|
||||||
from pyquarantine import mailer
|
|
||||||
|
|
||||||
|
|
||||||
class BaseQuarantine(object):
|
|
||||||
"Quarantine base class"
|
|
||||||
|
|
||||||
def __init__(self, global_config, config, configtest=False):
|
|
||||||
self.name = config["name"]
|
|
||||||
self.global_config = global_config
|
|
||||||
self.config = config
|
|
||||||
self.logger = logging.getLogger(__name__)
|
|
||||||
|
|
||||||
def add(self, queueid, mailfrom, recipients, headers,
|
|
||||||
fp, subgroups=None, named_subgroups=None):
|
|
||||||
"Add email to quarantine."
|
|
||||||
fp.seek(0)
|
|
||||||
return ""
|
|
||||||
|
|
||||||
def find(self, mailfrom=None, recipients=None, older_than=None):
|
|
||||||
"Find emails in quarantine."
|
|
||||||
return
|
|
||||||
|
|
||||||
def get_metadata(self, quarantine_id):
|
|
||||||
"Return metadata of quarantined email."
|
|
||||||
return
|
|
||||||
|
|
||||||
def delete(self, quarantine_id, recipient=None):
|
|
||||||
"Delete email from quarantine."
|
|
||||||
return
|
|
||||||
|
|
||||||
def notify(self, quarantine_id, recipient=None):
|
|
||||||
"Notify recipient about email in quarantine."
|
|
||||||
if not self.config["notification_obj"]:
|
|
||||||
raise RuntimeError(
|
|
||||||
"notification type is set to None, unable to send notifications")
|
|
||||||
return
|
|
||||||
|
|
||||||
def release(self, quarantine_id, recipient=None):
|
|
||||||
"Release email from quarantine."
|
|
||||||
return
|
|
||||||
|
|
||||||
|
|
||||||
class FileQuarantine(BaseQuarantine):
|
|
||||||
"Quarantine class to store mails on filesystem."
|
|
||||||
|
|
||||||
def __init__(self, global_config, config, configtest=False):
|
|
||||||
super(FileQuarantine, self).__init__(global_config, config, configtest)
|
|
||||||
|
|
||||||
# check if mandatory options are present in config
|
|
||||||
for option in ["quarantine_directory"]:
|
|
||||||
if option not in self.config.keys() and option in self.global_config.keys():
|
|
||||||
self.config[option] = self.global_config[option]
|
|
||||||
if option not in self.config.keys():
|
|
||||||
raise RuntimeError(
|
|
||||||
"mandatory option '{}' not present in config section '{}' or 'global'".format(
|
|
||||||
option, self.name))
|
|
||||||
self.directory = self.config["quarantine_directory"]
|
|
||||||
|
|
||||||
# check if quarantine directory exists and is writable
|
|
||||||
if not os.path.isdir(self.directory) or not os.access(
|
|
||||||
self.directory, os.W_OK):
|
|
||||||
raise RuntimeError(
|
|
||||||
"file quarantine directory '{}' does not exist or is not writable".format(
|
|
||||||
self.directory))
|
|
||||||
self._metadata_suffix = ".metadata"
|
|
||||||
|
|
||||||
def _save_datafile(self, quarantine_id, fp):
|
|
||||||
datafile = os.path.join(self.directory, quarantine_id)
|
|
||||||
try:
|
|
||||||
with open(datafile, "wb") as f:
|
|
||||||
copyfileobj(fp, f)
|
|
||||||
except IOError as e:
|
|
||||||
raise RuntimeError("unable save data file: {}".format(e))
|
|
||||||
|
|
||||||
def _save_metafile(self, quarantine_id, metadata):
|
|
||||||
metafile = os.path.join(
|
|
||||||
self.directory, "{}{}".format(
|
|
||||||
quarantine_id, self._metadata_suffix))
|
|
||||||
try:
|
|
||||||
with open(metafile, "w") as f:
|
|
||||||
json.dump(metadata, f, indent=2)
|
|
||||||
except IOError as e:
|
|
||||||
raise RuntimeError("unable to save metadata file: {}".format(e))
|
|
||||||
|
|
||||||
def _remove(self, quarantine_id):
|
|
||||||
datafile = os.path.join(self.directory, quarantine_id)
|
|
||||||
metafile = "{}{}".format(datafile, self._metadata_suffix)
|
|
||||||
|
|
||||||
try:
|
|
||||||
os.remove(metafile)
|
|
||||||
except IOError as e:
|
|
||||||
raise RuntimeError("unable to remove metadata file: {}".format(e))
|
|
||||||
|
|
||||||
try:
|
|
||||||
os.remove(datafile)
|
|
||||||
except IOError as e:
|
|
||||||
raise RuntimeError("unable to remove data file: {}".format(e))
|
|
||||||
|
|
||||||
def add(self, queueid, mailfrom, recipients, headers,
|
|
||||||
fp, subgroups=None, named_subgroups=None):
|
|
||||||
"Add email to file quarantine and return quarantine-id."
|
|
||||||
super(
|
|
||||||
FileQuarantine,
|
|
||||||
self).add(
|
|
||||||
queueid,
|
|
||||||
mailfrom,
|
|
||||||
recipients,
|
|
||||||
headers,
|
|
||||||
fp,
|
|
||||||
subgroups,
|
|
||||||
named_subgroups)
|
|
||||||
quarantine_id = "{}_{}".format(
|
|
||||||
datetime.now().strftime("%Y%m%d%H%M%S"), queueid)
|
|
||||||
|
|
||||||
# save mail
|
|
||||||
self._save_datafile(quarantine_id, fp)
|
|
||||||
|
|
||||||
# save metadata
|
|
||||||
metadata = {
|
|
||||||
"mailfrom": mailfrom,
|
|
||||||
"recipients": recipients,
|
|
||||||
"headers": headers,
|
|
||||||
"date": timegm(gmtime()),
|
|
||||||
"queue_id": queueid,
|
|
||||||
"subgroups": subgroups,
|
|
||||||
"named_subgroups": named_subgroups
|
|
||||||
}
|
|
||||||
try:
|
|
||||||
self._save_metafile(quarantine_id, metadata)
|
|
||||||
except RuntimeError as e:
|
|
||||||
datafile = os.path.join(self.directory, quarantine_id)
|
|
||||||
os.remove(datafile)
|
|
||||||
raise e
|
|
||||||
|
|
||||||
return quarantine_id
|
|
||||||
|
|
||||||
def get_metadata(self, quarantine_id):
|
|
||||||
"Return metadata of quarantined email."
|
|
||||||
super(FileQuarantine, self).get_metadata(quarantine_id)
|
|
||||||
|
|
||||||
metafile = os.path.join(
|
|
||||||
self.directory, "{}{}".format(
|
|
||||||
quarantine_id, self._metadata_suffix))
|
|
||||||
if not os.path.isfile(metafile):
|
|
||||||
raise RuntimeError(
|
|
||||||
"invalid quarantine id '{}'".format(quarantine_id))
|
|
||||||
|
|
||||||
try:
|
|
||||||
with open(metafile, "r") as f:
|
|
||||||
metadata = json.load(f)
|
|
||||||
except IOError as e:
|
|
||||||
raise RuntimeError("unable to read metadata file: {}".format(e))
|
|
||||||
except json.JSONDecodeError as e:
|
|
||||||
raise RuntimeError(
|
|
||||||
"invalid meta file '{}': {}".format(
|
|
||||||
metafile, e))
|
|
||||||
|
|
||||||
return metadata
|
|
||||||
|
|
||||||
def find(self, mailfrom=None, recipients=None, older_than=None):
|
|
||||||
"Find emails in quarantine."
|
|
||||||
super(FileQuarantine, self).find(mailfrom, recipients, older_than)
|
|
||||||
if isinstance(mailfrom, str):
|
|
||||||
mailfrom = [mailfrom]
|
|
||||||
if isinstance(recipients, str):
|
|
||||||
recipients = [recipients]
|
|
||||||
|
|
||||||
emails = {}
|
|
||||||
metafiles = glob(os.path.join(
|
|
||||||
self.directory, "*{}".format(self._metadata_suffix)))
|
|
||||||
for metafile in metafiles:
|
|
||||||
if not os.path.isfile(metafile):
|
|
||||||
continue
|
|
||||||
|
|
||||||
quarantine_id = os.path.basename(
|
|
||||||
metafile[:-len(self._metadata_suffix)])
|
|
||||||
metadata = self.get_metadata(quarantine_id)
|
|
||||||
if older_than is not None:
|
|
||||||
if timegm(gmtime()) - metadata["date"] < (older_than * 86400):
|
|
||||||
continue
|
|
||||||
|
|
||||||
if mailfrom is not None:
|
|
||||||
if metadata["mailfrom"] not in mailfrom:
|
|
||||||
continue
|
|
||||||
|
|
||||||
if recipients is not None:
|
|
||||||
if len(recipients) == 1 and \
|
|
||||||
recipients[0] not in metadata["recipients"]:
|
|
||||||
continue
|
|
||||||
elif len(set(recipients + metadata["recipients"])) == len(recipients + metadata["recipients"]):
|
|
||||||
continue
|
|
||||||
|
|
||||||
emails[quarantine_id] = metadata
|
|
||||||
|
|
||||||
return emails
|
|
||||||
|
|
||||||
def delete(self, quarantine_id, recipient=None):
|
|
||||||
"Delete email in quarantine."
|
|
||||||
super(FileQuarantine, self).delete(quarantine_id, recipient)
|
|
||||||
|
|
||||||
try:
|
|
||||||
metadata = self.get_metadata(quarantine_id)
|
|
||||||
except RuntimeError as e:
|
|
||||||
raise RuntimeError("unable to delete email: {}".format(e))
|
|
||||||
|
|
||||||
if recipient is None:
|
|
||||||
self._remove(quarantine_id)
|
|
||||||
else:
|
|
||||||
if recipient not in metadata["recipients"]:
|
|
||||||
raise RuntimeError("invalid recipient '{}'".format(recipient))
|
|
||||||
|
|
||||||
metadata["recipients"].remove(recipient)
|
|
||||||
if not metadata["recipients"]:
|
|
||||||
self._remove(quarantine_id)
|
|
||||||
else:
|
|
||||||
self._save_metafile(quarantine_id, metadata)
|
|
||||||
|
|
||||||
def notify(self, quarantine_id, recipient=None):
|
|
||||||
"Notify recipient about email in quarantine."
|
|
||||||
super(FileQuarantine, self).notify(quarantine_id, recipient)
|
|
||||||
|
|
||||||
try:
|
|
||||||
metadata = self.get_metadata(quarantine_id)
|
|
||||||
except RuntimeError as e:
|
|
||||||
raise RuntimeError("unable to release email: {}".format(e))
|
|
||||||
|
|
||||||
if recipient is not None:
|
|
||||||
if recipient not in metadata["recipients"]:
|
|
||||||
raise RuntimeError("invalid recipient '{}'".format(recipient))
|
|
||||||
recipients = [recipient]
|
|
||||||
else:
|
|
||||||
recipients = metadata["recipients"]
|
|
||||||
|
|
||||||
datafile = os.path.join(self.directory, quarantine_id)
|
|
||||||
try:
|
|
||||||
with open(datafile, "rb") as fp:
|
|
||||||
self.config["notification_obj"].notify(
|
|
||||||
metadata["queue_id"], quarantine_id, metadata["mailfrom"],
|
|
||||||
recipients, metadata["headers"], fp,
|
|
||||||
metadata["subgroups"], metadata["named_subgroups"],
|
|
||||||
synchronous=True)
|
|
||||||
except IOError as e:
|
|
||||||
raise RuntimeError
|
|
||||||
|
|
||||||
def release(self, quarantine_id, recipient=None):
|
|
||||||
"Release email from quarantine."
|
|
||||||
super(FileQuarantine, self).release(quarantine_id, recipient)
|
|
||||||
|
|
||||||
try:
|
|
||||||
metadata = self.get_metadata(quarantine_id)
|
|
||||||
except RuntimeError as e:
|
|
||||||
raise RuntimeError("unable to release email: {}".format(e))
|
|
||||||
|
|
||||||
if recipient is not None:
|
|
||||||
if recipient not in metadata["recipients"]:
|
|
||||||
raise RuntimeError("invalid recipient '{}'".format(recipient))
|
|
||||||
recipients = [recipient]
|
|
||||||
else:
|
|
||||||
recipients = metadata["recipients"]
|
|
||||||
|
|
||||||
datafile = os.path.join(self.directory, quarantine_id)
|
|
||||||
try:
|
|
||||||
with open(datafile, "rb") as f:
|
|
||||||
mail = f.read()
|
|
||||||
except IOError as e:
|
|
||||||
raise RuntimeError("unable to read data file: {}".format(e))
|
|
||||||
|
|
||||||
for recipient in recipients:
|
|
||||||
try:
|
|
||||||
mailer.smtp_send(
|
|
||||||
self.config["smtp_host"],
|
|
||||||
self.config["smtp_port"],
|
|
||||||
metadata["mailfrom"],
|
|
||||||
recipient,
|
|
||||||
mail)
|
|
||||||
except Exception as e:
|
|
||||||
raise RuntimeError(
|
|
||||||
"error while sending email to '{}': {}".format(
|
|
||||||
recipient, e))
|
|
||||||
|
|
||||||
self.delete(quarantine_id, recipient)
|
|
||||||
|
|
||||||
|
|
||||||
# list of quarantine types and their related quarantine classes
|
|
||||||
TYPES = {"file": FileQuarantine}
|
|
||||||
@@ -24,6 +24,7 @@ import pyquarantine
|
|||||||
|
|
||||||
from pyquarantine.version import __version__ as version
|
from pyquarantine.version import __version__ as version
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
"Run PyQuarantine-Milter."
|
"Run PyQuarantine-Milter."
|
||||||
# parse command line
|
# parse command line
|
||||||
@@ -35,11 +36,11 @@ def main():
|
|||||||
"-c", "--config",
|
"-c", "--config",
|
||||||
help="List of config files to read.",
|
help="List of config files to read.",
|
||||||
nargs="+",
|
nargs="+",
|
||||||
default=pyquarantine.QuarantineMilter.get_configfiles())
|
default=pyquarantine.QuarantineMilter.get_cfg_files())
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-s", "--socket",
|
"-s", "--socket",
|
||||||
help="Socket used to communicate with the MTA.",
|
help="Socket used to communicate with the MTA.",
|
||||||
required=True)
|
default="inet:8899@127.0.0.1")
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-d", "--debug",
|
"-d", "--debug",
|
||||||
help="Log debugging messages.",
|
help="Log debugging messages.",
|
||||||
@@ -52,7 +53,7 @@ def main():
|
|||||||
"-v", "--version",
|
"-v", "--version",
|
||||||
help="Print version.",
|
help="Print version.",
|
||||||
action="version",
|
action="version",
|
||||||
version="%(prog)s ({})".format(version))
|
version=f"%(prog)s ({version})")
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
# setup logging
|
# setup logging
|
||||||
@@ -61,24 +62,24 @@ def main():
|
|||||||
syslog_name = logname
|
syslog_name = logname
|
||||||
if args.debug:
|
if args.debug:
|
||||||
loglevel = logging.DEBUG
|
loglevel = logging.DEBUG
|
||||||
logname = "{}[%(name)s]".format(logname)
|
logname = f"{logname}[%(name)s]"
|
||||||
syslog_name = "{}: [%(name)s] %(levelname)s".format(syslog_name)
|
syslog_name = f"{syslog_name}: [%(name)s] %(levelname)s"
|
||||||
|
|
||||||
# set config files for milter class
|
# set config files for milter class
|
||||||
pyquarantine.QuarantineMilter.set_configfiles(args.config)
|
pyquarantine.QuarantineMilter.set_cfg_files(args.config)
|
||||||
root_logger = logging.getLogger()
|
root_logger = logging.getLogger()
|
||||||
root_logger.setLevel(loglevel)
|
root_logger.setLevel(loglevel)
|
||||||
|
|
||||||
# setup console log
|
# setup console log
|
||||||
stdouthandler = logging.StreamHandler(sys.stdout)
|
stdouthandler = logging.StreamHandler(sys.stdout)
|
||||||
stdouthandler.setLevel(logging.DEBUG)
|
stdouthandler.setLevel(logging.DEBUG)
|
||||||
formatter = logging.Formatter("%(message)s".format(logname))
|
formatter = logging.Formatter("%(message)s")
|
||||||
stdouthandler.setFormatter(formatter)
|
stdouthandler.setFormatter(formatter)
|
||||||
root_logger.addHandler(stdouthandler)
|
root_logger.addHandler(stdouthandler)
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
if args.test:
|
if args.test:
|
||||||
try:
|
try:
|
||||||
pyquarantine.generate_milter_config(args.test)
|
pyquarantine.setup_milter(test=args.test)
|
||||||
print("Configuration ok")
|
print("Configuration ok")
|
||||||
except RuntimeError as e:
|
except RuntimeError as e:
|
||||||
logger.error(e)
|
logger.error(e)
|
||||||
@@ -86,7 +87,7 @@ def main():
|
|||||||
else:
|
else:
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
formatter = logging.Formatter(
|
formatter = logging.Formatter(
|
||||||
"%(asctime)s {}: [%(levelname)s] %(message)s".format(logname),
|
f"%(asctime)s {logname}: [%(levelname)s] %(message)s",
|
||||||
datefmt="%Y-%m-%d %H:%M:%S")
|
datefmt="%Y-%m-%d %H:%M:%S")
|
||||||
stdouthandler.setFormatter(formatter)
|
stdouthandler.setFormatter(formatter)
|
||||||
|
|
||||||
@@ -94,25 +95,21 @@ def main():
|
|||||||
sysloghandler = logging.handlers.SysLogHandler(
|
sysloghandler = logging.handlers.SysLogHandler(
|
||||||
address="/dev/log", facility=logging.handlers.SysLogHandler.LOG_MAIL)
|
address="/dev/log", facility=logging.handlers.SysLogHandler.LOG_MAIL)
|
||||||
sysloghandler.setLevel(loglevel)
|
sysloghandler.setLevel(loglevel)
|
||||||
formatter = logging.Formatter("{}: %(message)s".format(syslog_name))
|
formatter = logging.Formatter(f"{syslog_name}: %(message)s")
|
||||||
sysloghandler.setFormatter(formatter)
|
sysloghandler.setFormatter(formatter)
|
||||||
root_logger.addHandler(sysloghandler)
|
root_logger.addHandler(sysloghandler)
|
||||||
|
|
||||||
logger.info("PyQuarantine-Milter starting")
|
logger.info("PyQuarantine-Milter starting")
|
||||||
try:
|
try:
|
||||||
# generate milter config
|
# generate milter config
|
||||||
global_config, config = pyquarantine.generate_milter_config()
|
pyquarantine.setup_milter()
|
||||||
except RuntimeError as e:
|
except RuntimeError as e:
|
||||||
logger.error(e)
|
logger.error(e)
|
||||||
sys.exit(255)
|
sys.exit(255)
|
||||||
|
|
||||||
pyquarantine.QuarantineMilter.global_config = global_config
|
|
||||||
pyquarantine.QuarantineMilter.config = config
|
|
||||||
|
|
||||||
# register to have the Milter factory create instances of your class:
|
# register to have the Milter factory create instances of your class:
|
||||||
Milter.factory = pyquarantine.QuarantineMilter
|
Milter.factory = pyquarantine.QuarantineMilter
|
||||||
Milter.set_exception_policy(Milter.TEMPFAIL)
|
Milter.set_exception_policy(Milter.TEMPFAIL)
|
||||||
# Milter.set_flags(0) # tell sendmail which features we use
|
|
||||||
|
|
||||||
# run milter
|
# run milter
|
||||||
rc = 0
|
rc = 0
|
||||||
@@ -122,6 +119,7 @@ def main():
|
|||||||
except Milter.milter.error as e:
|
except Milter.milter.error as e:
|
||||||
logger.error(e)
|
logger.error(e)
|
||||||
rc = 255
|
rc = 255
|
||||||
|
|
||||||
pyquarantine.mailer.queue.put(None)
|
pyquarantine.mailer.queue.put(None)
|
||||||
logger.info("PyQuarantine-Milter terminated")
|
logger.info("PyQuarantine-Milter terminated")
|
||||||
sys.exit(rc)
|
sys.exit(rc)
|
||||||
|
|||||||
252
pyquarantine/storages.py
Normal file
252
pyquarantine/storages.py
Normal file
@@ -0,0 +1,252 @@
|
|||||||
|
# PyQuarantine-Milter is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# PyQuarantine-Milter is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with PyQuarantineMilter. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
|
||||||
|
import json
|
||||||
|
import logging
|
||||||
|
import os
|
||||||
|
|
||||||
|
from calendar import timegm
|
||||||
|
from datetime import datetime
|
||||||
|
from glob import glob
|
||||||
|
from shutil import copyfileobj
|
||||||
|
from time import gmtime
|
||||||
|
|
||||||
|
|
||||||
|
class BaseMailStorage(object):
|
||||||
|
"Mail storage base class"
|
||||||
|
storage_type = "base"
|
||||||
|
|
||||||
|
def __init__(self, name, global_cfg, cfg, test=False):
|
||||||
|
self.name = name
|
||||||
|
self.logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
def add(self, qid, mailfrom, recipients, headers,
|
||||||
|
fp, subgroups=None, named_subgroups=None):
|
||||||
|
"Add email to storage."
|
||||||
|
fp.seek(0)
|
||||||
|
return ""
|
||||||
|
|
||||||
|
def find(self, mailfrom=None, recipients=None, older_than=None):
|
||||||
|
"Find emails in storage."
|
||||||
|
return
|
||||||
|
|
||||||
|
def get_metadata(self, storage_id):
|
||||||
|
"Return metadata of email in storage."
|
||||||
|
return
|
||||||
|
|
||||||
|
def delete(self, storage_id, recipients=None):
|
||||||
|
"Delete email from storage."
|
||||||
|
return
|
||||||
|
|
||||||
|
def get_mail(self, storage_id):
|
||||||
|
"Return a file pointer to the email and metadata."
|
||||||
|
return
|
||||||
|
|
||||||
|
|
||||||
|
class FileMailStorage(BaseMailStorage):
|
||||||
|
"Storage class to store mails on filesystem."
|
||||||
|
storage_type = "file"
|
||||||
|
|
||||||
|
def __init__(self, name, global_cfg, cfg, test=False):
|
||||||
|
super(FileMailStorage, self).__init__(name, global_cfg, cfg, test)
|
||||||
|
|
||||||
|
defaults = {}
|
||||||
|
# check config
|
||||||
|
|
||||||
|
for opt in ["storage_directory"] + list(defaults.keys()):
|
||||||
|
if opt in cfg:
|
||||||
|
continue
|
||||||
|
if opt in global_cfg:
|
||||||
|
cfg[opt] = global_cfg[opt]
|
||||||
|
elif opt in defaults:
|
||||||
|
cfg[opt] = defaults[opt]
|
||||||
|
else:
|
||||||
|
raise RuntimeError(
|
||||||
|
f"mandatory option '{opt}' not present in config "
|
||||||
|
f"section '{self.name}' or 'global'")
|
||||||
|
self.directory = cfg["storage_directory"]
|
||||||
|
|
||||||
|
# check if quarantine directory exists and is writable
|
||||||
|
if not os.path.isdir(self.directory) or not os.access(
|
||||||
|
self.directory, os.W_OK):
|
||||||
|
raise RuntimeError(
|
||||||
|
f"file quarantine directory '{self.directory}' does "
|
||||||
|
f"not exist or is not writable")
|
||||||
|
self._metadata_suffix = ".metadata"
|
||||||
|
|
||||||
|
def _save_datafile(self, storage_id, fp):
|
||||||
|
datafile = os.path.join(self.directory, storage_id)
|
||||||
|
try:
|
||||||
|
with open(datafile, "wb") as f:
|
||||||
|
copyfileobj(fp, f)
|
||||||
|
except IOError as e:
|
||||||
|
raise RuntimeError(f"unable save data file: {e}")
|
||||||
|
|
||||||
|
def _save_metafile(self, storage_id, metadata):
|
||||||
|
metafile = os.path.join(
|
||||||
|
self.directory, f"{storage_id}{self._metadata_suffix}")
|
||||||
|
try:
|
||||||
|
with open(metafile, "w") as f:
|
||||||
|
json.dump(metadata, f, indent=2)
|
||||||
|
except IOError as e:
|
||||||
|
raise RuntimeError(f"unable to save metadata file: {e}")
|
||||||
|
|
||||||
|
def _remove(self, storage_id):
|
||||||
|
datafile = os.path.join(self.directory, storage_id)
|
||||||
|
metafile = f"{datafile}{self._metadata_suffix}"
|
||||||
|
|
||||||
|
try:
|
||||||
|
os.remove(metafile)
|
||||||
|
except IOError as e:
|
||||||
|
raise RuntimeError(f"unable to remove metadata file: {e}")
|
||||||
|
|
||||||
|
try:
|
||||||
|
os.remove(datafile)
|
||||||
|
except IOError as e:
|
||||||
|
raise RuntimeError(f"unable to remove data file: {e}")
|
||||||
|
|
||||||
|
def add(self, qid, mailfrom, recipients, headers,
|
||||||
|
fp, subgroups=None, named_subgroups=None):
|
||||||
|
"Add email to file storage and return storage id."
|
||||||
|
super(
|
||||||
|
FileMailStorage,
|
||||||
|
self).add(
|
||||||
|
qid,
|
||||||
|
mailfrom,
|
||||||
|
recipients,
|
||||||
|
headers,
|
||||||
|
fp,
|
||||||
|
subgroups,
|
||||||
|
named_subgroups)
|
||||||
|
timestamp = datetime.now().strftime("%Y%m%d%H%M%S")
|
||||||
|
storage_id = f"{timestamp}_{qid}"
|
||||||
|
|
||||||
|
# save mail
|
||||||
|
self._save_datafile(storage_id, fp)
|
||||||
|
|
||||||
|
# save metadata
|
||||||
|
metadata = {
|
||||||
|
"mailfrom": mailfrom,
|
||||||
|
"recipients": recipients,
|
||||||
|
"headers": headers,
|
||||||
|
"date": timegm(gmtime()),
|
||||||
|
"queue_id": qid,
|
||||||
|
"subgroups": subgroups,
|
||||||
|
"named_subgroups": named_subgroups
|
||||||
|
}
|
||||||
|
try:
|
||||||
|
self._save_metafile(storage_id, metadata)
|
||||||
|
except RuntimeError as e:
|
||||||
|
datafile = os.path.join(self.directory, storage_id)
|
||||||
|
os.remove(datafile)
|
||||||
|
raise e
|
||||||
|
|
||||||
|
return storage_id
|
||||||
|
|
||||||
|
def get_metadata(self, storage_id):
|
||||||
|
"Return metadata of email in storage."
|
||||||
|
super(FileMailStorage, self).get_metadata(storage_id)
|
||||||
|
|
||||||
|
metafile = os.path.join(
|
||||||
|
self.directory, f"{storage_id}{self._metadata_suffix}")
|
||||||
|
if not os.path.isfile(metafile):
|
||||||
|
raise RuntimeError(
|
||||||
|
f"invalid storage id '{storage_id}'")
|
||||||
|
|
||||||
|
try:
|
||||||
|
with open(metafile, "r") as f:
|
||||||
|
metadata = json.load(f)
|
||||||
|
except IOError as e:
|
||||||
|
raise RuntimeError(f"unable to read metadata file: {e}")
|
||||||
|
except json.JSONDecodeError as e:
|
||||||
|
raise RuntimeError(
|
||||||
|
f"invalid metafile '{metafile}': {e}")
|
||||||
|
|
||||||
|
return metadata
|
||||||
|
|
||||||
|
def find(self, mailfrom=None, recipients=None, older_than=None):
|
||||||
|
"Find emails in storage."
|
||||||
|
super(FileMailStorage, self).find(mailfrom, recipients, older_than)
|
||||||
|
if isinstance(mailfrom, str):
|
||||||
|
mailfrom = [mailfrom]
|
||||||
|
if isinstance(recipients, str):
|
||||||
|
recipients = [recipients]
|
||||||
|
|
||||||
|
emails = {}
|
||||||
|
metafiles = glob(os.path.join(
|
||||||
|
self.directory, f"*{self._metadata_suffix}"))
|
||||||
|
for metafile in metafiles:
|
||||||
|
if not os.path.isfile(metafile):
|
||||||
|
continue
|
||||||
|
|
||||||
|
storage_id = os.path.basename(
|
||||||
|
metafile[:-len(self._metadata_suffix)])
|
||||||
|
metadata = self.get_metadata(storage_id)
|
||||||
|
if older_than is not None:
|
||||||
|
if timegm(gmtime()) - metadata["date"] < (older_than * 86400):
|
||||||
|
continue
|
||||||
|
|
||||||
|
if mailfrom is not None:
|
||||||
|
if metadata["mailfrom"] not in mailfrom:
|
||||||
|
continue
|
||||||
|
|
||||||
|
if recipients is not None:
|
||||||
|
if len(recipients) == 1 and \
|
||||||
|
recipients[0] not in metadata["recipients"]:
|
||||||
|
continue
|
||||||
|
elif len(set(recipients + metadata["recipients"])) == \
|
||||||
|
len(recipients + metadata["recipients"]):
|
||||||
|
continue
|
||||||
|
|
||||||
|
emails[storage_id] = metadata
|
||||||
|
|
||||||
|
return emails
|
||||||
|
|
||||||
|
def delete(self, storage_id, recipients=None):
|
||||||
|
"Delete email from storage."
|
||||||
|
super(FileMailStorage, self).delete(storage_id, recipients)
|
||||||
|
|
||||||
|
try:
|
||||||
|
metadata = self.get_metadata(storage_id)
|
||||||
|
except RuntimeError as e:
|
||||||
|
raise RuntimeError(f"unable to delete email: {e}")
|
||||||
|
|
||||||
|
if not recipients:
|
||||||
|
self._remove(storage_id)
|
||||||
|
else:
|
||||||
|
if type(recipients) == str:
|
||||||
|
recipients = [recipients]
|
||||||
|
for recipient in recipients:
|
||||||
|
if recipient not in metadata["recipients"]:
|
||||||
|
raise RuntimeError(f"invalid recipient '{recipient}'")
|
||||||
|
metadata["recipients"].remove(recipient)
|
||||||
|
if not metadata["recipients"]:
|
||||||
|
self._remove(storage_id)
|
||||||
|
else:
|
||||||
|
self._save_metafile(storage_id, metadata)
|
||||||
|
|
||||||
|
def get_mail(self, storage_id):
|
||||||
|
super(FileMailStorage, self).get_mail(storage_id)
|
||||||
|
|
||||||
|
metadata = self.get_metadata(storage_id)
|
||||||
|
datafile = os.path.join(self.directory, storage_id)
|
||||||
|
try:
|
||||||
|
fp = open(datafile, "rb")
|
||||||
|
except IOError as e:
|
||||||
|
raise RuntimeError(f"unable to open email data file: {e}")
|
||||||
|
return (fp, metadata)
|
||||||
|
|
||||||
|
|
||||||
|
# list of storage types and their related storage classes
|
||||||
|
TYPES = {"file": FileMailStorage}
|
||||||
@@ -1 +1 @@
|
|||||||
__version__ = "0.0.6"
|
__version__ = "1.0.5"
|
||||||
|
|||||||
@@ -15,7 +15,6 @@
|
|||||||
import logging
|
import logging
|
||||||
import peewee
|
import peewee
|
||||||
import re
|
import re
|
||||||
import sys
|
|
||||||
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from playhouse.db_url import connect
|
from playhouse.db_url import connect
|
||||||
@@ -24,14 +23,14 @@ from playhouse.db_url import connect
|
|||||||
class WhitelistBase(object):
|
class WhitelistBase(object):
|
||||||
"Whitelist base class"
|
"Whitelist base class"
|
||||||
|
|
||||||
def __init__(self, global_config, config, configtest=False):
|
whitelist_type = "base"
|
||||||
self.global_config = global_config
|
|
||||||
self.config = config
|
def __init__(self, name, global_cfg, cfg, test=False):
|
||||||
self.configtest = configtest
|
self.name = name
|
||||||
self.name = config["name"]
|
self.test = test
|
||||||
self.logger = logging.getLogger(__name__)
|
self.logger = logging.getLogger(__name__)
|
||||||
self.valid_entry_regex = re.compile(
|
self.valid_entry_regex = re.compile(
|
||||||
r"^[a-zA-Z0-9_.+-]*?(@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+)?$")
|
r"^[a-zA-Z0-9_.=+-]*?(@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+)?$")
|
||||||
|
|
||||||
def check(self, mailfrom, recipient):
|
def check(self, mailfrom, recipient):
|
||||||
"Check if mailfrom/recipient combination is whitelisted."
|
"Check if mailfrom/recipient combination is whitelisted."
|
||||||
@@ -73,44 +72,52 @@ class Meta(object):
|
|||||||
|
|
||||||
class DatabaseWhitelist(WhitelistBase):
|
class DatabaseWhitelist(WhitelistBase):
|
||||||
"Whitelist class to store whitelist in a database"
|
"Whitelist class to store whitelist in a database"
|
||||||
|
whitelist_type = "db"
|
||||||
_db_connections = {}
|
_db_connections = {}
|
||||||
_db_tables = {}
|
_db_tables = {}
|
||||||
|
|
||||||
def __init__(self, global_config, config, configtest=False):
|
def __init__(self, name, global_cfg, cfg, test=False):
|
||||||
super(
|
super(
|
||||||
DatabaseWhitelist,
|
DatabaseWhitelist,
|
||||||
self).__init__(
|
self).__init__(
|
||||||
global_config,
|
global_cfg,
|
||||||
config,
|
cfg,
|
||||||
configtest)
|
test)
|
||||||
|
|
||||||
# check if mandatory options are present in config
|
defaults = {}
|
||||||
for option in ["whitelist_db_connection", "whitelist_db_table"]:
|
|
||||||
if option not in self.config.keys() and option in self.global_config.keys():
|
# check config
|
||||||
self.config[option] = self.global_config[option]
|
for opt in ["whitelist_db_connection",
|
||||||
if option not in self.config.keys():
|
"whitelist_db_table"] + list(defaults.keys()):
|
||||||
|
if opt in cfg:
|
||||||
|
continue
|
||||||
|
if opt in global_cfg:
|
||||||
|
cfg[opt] = global_cfg[opt]
|
||||||
|
elif opt in defaults:
|
||||||
|
cfg[opt] = defaults[opt]
|
||||||
|
else:
|
||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
"mandatory option '{}' not present in config section '{}' or 'global'".format(
|
f"mandatory option '{opt}' not present in config "
|
||||||
option, self.name))
|
f"section '{self.name}' or 'global'")
|
||||||
|
|
||||||
tablename = self.config["whitelist_db_table"]
|
tablename = cfg["whitelist_db_table"]
|
||||||
connection_string = self.config["whitelist_db_connection"]
|
connection_string = cfg["whitelist_db_connection"]
|
||||||
|
|
||||||
if connection_string in DatabaseWhitelist._db_connections.keys():
|
if connection_string in DatabaseWhitelist._db_connections.keys():
|
||||||
db = DatabaseWhitelist._db_connections[connection_string]
|
db = DatabaseWhitelist._db_connections[connection_string]
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
# connect to database
|
# connect to database
|
||||||
|
conn = re.sub(
|
||||||
|
r"(.*?://.*?):.*?(@.*)",
|
||||||
|
r"\1:<PASSWORD>\2",
|
||||||
|
connection_string)
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
"connecting to database '{}'".format(
|
f"connecting to database '{conn}'")
|
||||||
re.sub(
|
|
||||||
r"(.*?://.*?):.*?(@.*)",
|
|
||||||
r"\1:<PASSWORD>\2",
|
|
||||||
connection_string)))
|
|
||||||
db = connect(connection_string)
|
db = connect(connection_string)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
"unable to connect to database: {}".format(e))
|
f"unable to connect to database: {e}")
|
||||||
|
|
||||||
DatabaseWhitelist._db_connections[connection_string] = db
|
DatabaseWhitelist._db_connections[connection_string] = db
|
||||||
|
|
||||||
@@ -118,7 +125,7 @@ class DatabaseWhitelist(WhitelistBase):
|
|||||||
self.meta = Meta
|
self.meta = Meta
|
||||||
self.meta.database = db
|
self.meta.database = db
|
||||||
self.meta.table_name = tablename
|
self.meta.table_name = tablename
|
||||||
self.model = type("WhitelistModel_{}".format(self.name), (WhitelistModel,), {
|
self.model = type(f"WhitelistModel_{self.name}", (WhitelistModel,), {
|
||||||
"Meta": self.meta
|
"Meta": self.meta
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -127,13 +134,12 @@ class DatabaseWhitelist(WhitelistBase):
|
|||||||
|
|
||||||
if tablename not in DatabaseWhitelist._db_tables[connection_string]:
|
if tablename not in DatabaseWhitelist._db_tables[connection_string]:
|
||||||
DatabaseWhitelist._db_tables[connection_string].append(tablename)
|
DatabaseWhitelist._db_tables[connection_string].append(tablename)
|
||||||
if not self.configtest:
|
if not self.test:
|
||||||
try:
|
try:
|
||||||
db.create_tables([self.model])
|
db.create_tables([self.model])
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
"unable to initialize table '{}': {}".format(
|
f"unable to initialize table '{tablename}': {e}")
|
||||||
tablename, e))
|
|
||||||
|
|
||||||
def _entry_to_dict(self, entry):
|
def _entry_to_dict(self, entry):
|
||||||
result = {}
|
result = {}
|
||||||
@@ -163,17 +169,19 @@ class DatabaseWhitelist(WhitelistBase):
|
|||||||
|
|
||||||
# generate list of possible mailfroms
|
# generate list of possible mailfroms
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
"query database for whitelist entries from <{}> to <{}>".format(
|
f"query database for whitelist entries from <{mailfrom}> "
|
||||||
mailfrom, recipient))
|
f"to <{recipient}>")
|
||||||
mailfroms = [""]
|
mailfroms = [""]
|
||||||
if "@" in mailfrom and not mailfrom.startswith("@"):
|
if "@" in mailfrom and not mailfrom.startswith("@"):
|
||||||
mailfroms.append("@{}".format(mailfrom.split("@")[1]))
|
domain = mailfrom.split("@")[1]
|
||||||
|
mailfroms.append(f"@{domain}")
|
||||||
mailfroms.append(mailfrom)
|
mailfroms.append(mailfrom)
|
||||||
|
|
||||||
# generate list of possible recipients
|
# generate list of possible recipients
|
||||||
recipients = [""]
|
recipients = [""]
|
||||||
if "@" in recipient and not recipient.startswith("@"):
|
if "@" in recipient and not recipient.startswith("@"):
|
||||||
recipients.append("@{}".format(recipient.split("@")[1]))
|
domain = recipient.split("@")[1]
|
||||||
|
recipients.append(f"@{domain}")
|
||||||
recipients.append(recipient)
|
recipients.append(recipient)
|
||||||
|
|
||||||
# query the database
|
# query the database
|
||||||
@@ -183,7 +191,7 @@ class DatabaseWhitelist(WhitelistBase):
|
|||||||
self.model.mailfrom.in_(mailfroms),
|
self.model.mailfrom.in_(mailfroms),
|
||||||
self.model.recipient.in_(recipients)))
|
self.model.recipient.in_(recipients)))
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise RuntimeError("unable to query database: {}".format(e))
|
raise RuntimeError(f"unable to query database: {e}")
|
||||||
|
|
||||||
if not entries:
|
if not entries:
|
||||||
# no whitelist entry found
|
# no whitelist entry found
|
||||||
@@ -215,7 +223,8 @@ class DatabaseWhitelist(WhitelistBase):
|
|||||||
try:
|
try:
|
||||||
for entry in list(self.model.select()):
|
for entry in list(self.model.select()):
|
||||||
if older_than is not None:
|
if older_than is not None:
|
||||||
if (datetime.now() - entry.last_used).total_seconds() < (older_than * 86400):
|
delta = (datetime.now() - entry.last_used).total_seconds()
|
||||||
|
if delta < (older_than * 86400):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if mailfrom is not None:
|
if mailfrom is not None:
|
||||||
@@ -228,7 +237,7 @@ class DatabaseWhitelist(WhitelistBase):
|
|||||||
|
|
||||||
entries.update(self._entry_to_dict(entry))
|
entries.update(self._entry_to_dict(entry))
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise RuntimeError("unable to query database: {}".format(e))
|
raise RuntimeError(f"unable to query database: {e}")
|
||||||
|
|
||||||
return entries
|
return entries
|
||||||
|
|
||||||
@@ -249,7 +258,7 @@ class DatabaseWhitelist(WhitelistBase):
|
|||||||
comment=comment,
|
comment=comment,
|
||||||
permanent=permanent)
|
permanent=permanent)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise RuntimeError("unable to add entry to database: {}".format(e))
|
raise RuntimeError(f"unable to add entry to database: {e}")
|
||||||
|
|
||||||
def delete(self, whitelist_id):
|
def delete(self, whitelist_id):
|
||||||
"Delete entry from whitelist."
|
"Delete entry from whitelist."
|
||||||
@@ -260,7 +269,7 @@ class DatabaseWhitelist(WhitelistBase):
|
|||||||
deleted = query.execute()
|
deleted = query.execute()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
"unable to delete entry from database: {}".format(e))
|
f"unable to delete entry from database: {e}")
|
||||||
|
|
||||||
if deleted == 0:
|
if deleted == 0:
|
||||||
raise RuntimeError("invalid whitelist id")
|
raise RuntimeError("invalid whitelist id")
|
||||||
@@ -284,10 +293,11 @@ class WhitelistCache(object):
|
|||||||
mailfrom, recipient)
|
mailfrom, recipient)
|
||||||
return self.cache[whitelist][recipient]
|
return self.cache[whitelist][recipient]
|
||||||
|
|
||||||
def get_whitelisted_recipients(self, whitelist, mailfrom, recipients):
|
def get_recipients(self, whitelist, mailfrom, recipients):
|
||||||
self.load(whitelist, mailfrom, recipients)
|
self.load(whitelist, mailfrom, recipients)
|
||||||
return list(
|
return list(filter(
|
||||||
filter(lambda x: self.cache[whitelist][x], self.cache[whitelist].keys()))
|
lambda x: self.cache[whitelist][x],
|
||||||
|
self.cache[whitelist].keys()))
|
||||||
|
|
||||||
|
|
||||||
# list of whitelist types and their related whitelist classes
|
# list of whitelist types and their related whitelist classes
|
||||||
|
|||||||
4
setup.py
4
setup.py
@@ -22,7 +22,7 @@ setup(name = "pyquarantine",
|
|||||||
# 3 - Alpha
|
# 3 - Alpha
|
||||||
# 4 - Beta
|
# 4 - Beta
|
||||||
# 5 - Production/Stable
|
# 5 - Production/Stable
|
||||||
"Development Status :: 3 - Alpha",
|
"Development Status :: 4 - Beta",
|
||||||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
@@ -36,5 +36,5 @@ setup(name = "pyquarantine",
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
install_requires = ["pymilter", "netaddr", "beautifulsoup4[lxml]", "peewee"],
|
install_requires = ["pymilter", "netaddr", "beautifulsoup4[lxml]", "peewee"],
|
||||||
python_requires = ">=3"
|
python_requires = ">=3.6"
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user