##### Mantis SMTP Gateway #####
Mantis SMTP Gateway is an email gateway for Mantis Bug Tracker.
Run as a SMTP server, Mantis SMTP try to add email informations to Mantis Bug Tracker through its SOAP API.
Process :
---------
Parsing subject to detect issue id : if present, the email will be processed as a note. Also, create a new issue in project corresponding to email recipient.
Features :
----------
- detect issue id from subject
- add note to existing issue
- create new issue in project
- multiple project support with different email recipient
- add email attachment as issue attachment
- email warning sender on error
- daemon mode (init script provide)
#### Installation ####
### Python Requirements ###
# System lib :
- sys
- os
- signal
# Mail lib :
- email
- smtplib
- smtpd
# SOAP lib :
- suds
# Daemon lib :
- logging
- simplejson : to load config file
- asyncore
# Utils lib :
- re
- string
- optparse.OptionParser : to parse command line parameters
### Redhat/Debian Packages Requirements ###