Postfix for MongoDB is a fork of the famous Postfix SMTP daemon. It allows to store virtual email addresses in a MongoDB database.
So the difference between the official and this version is that the MongoDB dict lookup driver has been included. As long the C Driver of MongoDB (libmongoc) is not yet realized as official packages for main-stream Linux and BSD distributions, this dictionnary driver can not be included in the official version of Postfix daemon.
This is the first version, with very basic functions, so please consider it as alpha version and only be used by advanced and experienced users of Postfix with C programming knowledges.
In future, it would be good that this driver would be included in the official postfix release.
The postfix version used here is 3.4.6.
If you need additional extra-features, please contact me at [email protected].
Example of a /etc/postfix/mmongodb-aliases.cf file:
#
# MongoDB Postfix Alias File
# (C) Stephan Ferraro <[email protected]>, Ferraro Ltd.
#
# URI (use IP address, no hostnames. Postfix can't resolve them, only postmap can do it.
# So for localhost, use 127.0.0.1.
uri = mongodb://root:[email protected]:27017/?appname=postfix
# The database name on the servers.
dbname = test
# Search query by key and return value
# Example:
# collection = address
# key = email
#
# This means in MongoDB JavaScript search query:
# use address;
# var response = db.address.find({email: full_email_address});
# console.log(response.email);
#
# It would then return the property newEmail of the found object returned by MongoDB find() command.
# The value with the full_email_address is filled up by Postfix.
collection = address
key = email
The file can then be included so in the main.cf file:
virtual_mailbox_maps = mongodb:/etc/postfix/mongodb-aliases.cf
- find and return string value of the found object
- supports Plus Addressing formats, e.g. [email protected]
- reconnect to MongoDB server if it was gone or restarted
-
Install Ubuntu Linux Server 19.04 (maybe it works too on other Linux distributions, but I have not tested it)
-
Install C compiler and development environment
apt-get install make m4 gcc libc-dev libdb-dev libssl-dev libglib2.0-dev cmake libssl-dev libsasl2-dev
-
Install MongoDB libraries at Ubuntu 19.04:
apt-get install libbson-1.0 libbson-dev libmongoc-1.0-0 libmongoc-dev
-
Compile this postfix source code, on Ubuntu Linux you need to run:
make tidy make makefiles CCARGS="-DUSE_TLS" AUXLIBS="-lssl -lcrypto" make SYSLIBS="-L/usr/lib/x86_64-linux-gnu -lssl -lcrypto -lpcre -ldb -lnsl -lresolv -lbson-1.0 -lmongoc-1.0" make install
-
Start MongoDB server
-
Configure Postfix configuration files, specially add in main.cf the entry "virtual_mailbox_maps = mongodb:/etc/postfix/mongodb-aliases.cf" and add the file /etc/postfix/mongodb-aliases.cf
-
Start Postfix server with the command "/usr/sbin/postfix start" and check log file at /var/log/mail.log for debugging purposes
Simply try if it works by executing the following postfix command:
# postmap -q '[email protected]' mongodb:/etc/postfix/mongodb-aliases.cf
[email protected]
# postmap -q '[email protected]' mongodb:/etc/postfix/mongodb-aliases.cf
[email protected]
If nothing appears, then postmap command should return with an exit code of 1. You can check it with the echo command:
# echo $?
1
List of additional src files compared to Postfix normal version:
- global/dict_mongodb.h
- global/dict_mongodb.c
List of modified src files compared to Postfix normal version:
- global/Makefile.in
- global/mail_dict.c
- master/master.c
For some reasons, Postfix or Libmongoc does not support hostnames in the URI parameter while running. Only in test mode with postmap it works. If someone knows why, feel free to make a pull request.
If you need new features, please contact me at [email protected]. Any project work need to be paid. Additionally any work on it it will be included for everyone in this GitHub repository as its an open source project.