Mail

Changing the default port of an Exchange Server Send Connector

Exchange Management Shell:

Get-SendConnector | fl
Set-SendConnector -Identity "Send Connector Name" -port 28

source

By WladyX on 4 August, 2010 | Mail, Windows | A comment?

Roundcube postfixadmin password

# 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';

source

By WladyX on 8 July, 2010 | Mail | A comment?

Sending Email with Netcat

/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

source

By WladyX on 21 April, 2010 | General, Mail, Scripts | A comment?

Z-Push – open source push technology

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.

z-push

By WladyX on 14 April, 2010 | General, Mail, Mobile, WM | A comment?

Awstats on Ubuntu

By WladyX on 24 March, 2010 | Apache, Mail, Ubuntu | A comment?

DKIM on Gentoo

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.

source1
source2

By WladyX on 17 March, 2010 | Gentoo, Mail | A comment?

Postfix masquerading or changing outgoing SMTP email or mail address

/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

source

By WladyX on 10 March, 2010 | General, Mail | A comment?

Zimbra: Transport Table for external servers

Dovecot convert plugin from mbox to Maildir

Delete Postfix Mail Queue

postsuper -d ALL