2018-05-04 14:24:02 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from pathlib import Path
|
|
|
|
|
2018-05-07 14:02:01 +02:00
|
|
|
binpath = Path(__file__).parent / 'mail_to_misp.py'
|
|
|
|
binpath_forward = Path(__file__).parent / 'mail_to_misp_forward.py'
|
|
|
|
|
2021-10-01 04:26:56 +02:00
|
|
|
# default ident: <hostname> Python SMTP 1.4.2
|
|
|
|
ident = 'ESMTP Postfix (Ubuntu)'
|
|
|
|
|
2018-05-09 10:47:24 +02:00
|
|
|
email_forward = 'mail2misp@example.com'
|
2018-05-04 14:24:02 +02:00
|
|
|
|
|
|
|
smtp_addr = '127.0.0.1'
|
|
|
|
smtp_port = 2525
|
2018-05-07 11:22:52 +02:00
|
|
|
ssl = False
|