Exchange Management Shell:
Get-SendConnector | fl
Set-SendConnector -Identity "Send Connector Name" -port 28
# grep password roundcubemail/config/main.inc.php
$rcmail_config['plugins'] = array('password');
# vim roundcubemail/plugins/password/config.inc.php
$rcmail_config['password_db_dsn'] = 'mysql://postfixadmin:passw0rd@localhost/postfix';
$rcmail_config['password_query'] = 'UPDATE mailbox SET password=%c WHERE username=%u';
/tmp/message:
HELO host.example.com
MAIL FROM:<test@host.example.com>
RCPT TO:<bob@example.com>
DATA
From: [Alice] <alice@geek.com>
To: <bob@example.com>
Date: Mon, 12 Apr 2010 14:21:26 -0400
Subject: Test Message
Hi there! This is supposed to be a real email…
Have a good day!
Alice
.
QUIT
# /usr/bin/nc smtp.domain.com 25 < /tmp/message
Z-push is an implementation of the ActiveSync protocol which is used ‘over-the-air’ for multi platform ActiveSync devices, including Windows Mobile, iPhone, Sony Ericsson and Nokia mobile devices. With Z-push any groupware can be connected and synced with these devices.
emerge -a dkim-milter
emerge --config mail-filter/dkim-milter
/etc/mail/dkim-filter/dkim-filter.conf: Domain domain.tld
KeyFile /etc/mail/dkim-filter/mydkim.private
Selector mydkim
UMask 000
/var/bind/domain.tld.hosts:mydkim._domainkey.domain.tld. IN TXT "v=DKIM1; g=*; k=rsa; p=yourkeyhere;"
/etc/postfix/main.cf:smtpd_milters = unix:/var/run/dkim-filter/dkim-filter.sock
non_smtpd_milters = unix:/var/run/dkim-filter/dkim-filter.sock
rndc reload
postfix reload
/etc/init.d/dkim-filter start
Test by sending email to autorespond+dkim@dk.elandsys.com.
/etc/postfix/main.cf:
smtp_generic_maps = hash:/etc/postfix/generic
/etc/postfix/generic:
tom-01@server01.hosting.com tom@domain.com
# postmap /etc/postfix/generic
# /etc/init.d/postfix restart