Links zu den Projekten
Zimbra, Zimbra WikiGroupware Migration
audriga Groupware MigrationeMail Privacy Tester - testet eMail Clients auf ihre Einstellung zum Datenschutz, werden Bilder vom Server nachgeladen u.a.
Thunderbird Autoconfiguration
   Autoconfiguration Datei HowTo
- Kontaktierte URLs von Thunderbird u.a. eMail Clients die dieses Verfahren nutzen.
   http://autoconfig.domain.tld/mail/config-v1.1.xml?emailaddress=user@domain.tld
   http://autoconfig.domain.tld/.well-known/autoconfig/mail/config-v1.1.xml?emailaddress=user@domain.tld
- Vorlage Datei config-v1.1.xml
<?xml version="1.0" encoding="UTF-8"?>
<clientConfig version="1.1">
  <emailProvider id="IPv6EMail">
    <domain>example.com</domain>
    <displayName>IPv6 E-Mail Service</displayName>
    <displayShortName>IPv6EMail</displayShortName>
    <incomingServer type="imap">
      <hostname>imap.example.com</hostname>
      <port>993</port>
      <socketType>SSL</socketType>
      <authentication>password-encrypted</authentication>
      <username>%EMAILADDRESS%</username>
    </incomingServer>
    <incomingServer type="imap">
      <hostname>imap.example.com</hostname>
      <port>143</port>
      <socketType>STARTTLS</socketType>
      <authentication>password-encrypted</authentication>
      <username>%EMAILADDRESS%</username>
    </incomingServer>
    <outgoingServer type="smtp">
      <hostname>smtp.example.com</hostname>
      <port>587</port>
      <socketType>STARTTLS</socketType>
      <authentication>password-encrypted</authentication>
      <username>%EMAILADDRESS%</username>
    </outgoingServer>
  </emailProvider>
</clientConfig>
 - Nginx Konfigurationsdatei
server {
	server_name autoconfig.domain.tld;
	listen 80;
	listen [::]:80;
	root /var/www/mail/autoconfig;
	index config-v1.1.xml;
	access_log /var/log/nginx/access.log;
	error_log /var/log/nginx/error.log;
	}
 - Apache vHost Datei
<VirtualHost *:80>
        ServerAdmin admin@domain.tld
        ServerName autoconfig.domain.tld
        ServerAlias autoconfig.domain1.tld
        DocumentRoot /var/www/html/autoconfig.domain.tld/
        ServerSignature Off
</VirtualHost>
<VirtualHost *:443>
        ServerAdmin admin@domain.tld
        ServerName autoconfig.domain.tld
        ServerAlias autoconfig.domain1.tld
        DocumentRoot /var/www/html/autoconfig.domain.tld/
        <Directory /var/www/html/autoconfig.domain.tld>
          Options Indexes FollowSymLinks
          AllowOverride All
          Order Allow,Deny
          Allow from All
        </Directory>
        # Logfiles
        CustomLog /var/log/apache2/autoconfig.domain.tld_access_log combined
        ErrorLog /var/log/apache2/autoconfig.domain.tld_error_log
        ServerSignature Off
</VirtualHost>
 - URLs die Outlook zur Autokonfiguration abfragt, bei gestarteten Outlook  STRG Taste halten, einen Rechtsklick auf das Outlook-Symbol im Systray | E-Mail Autokonfiguration testen | wählen.
   https://maildomain/autodiscover/autodiscover.xml
   https://autodiscover.maildomain/autodiscover/autodiscover.xml
- Vorlage Datei autodiscover.xml
<?xml version="1.0" encoding="utf-8" ?>
<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006"> <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a"> <Account> <AccountType>email</AccountType> <Action>redirectURL</Action> <RedirectURL>https://server.domain.tld/autodiscover/autodiscover.xml</RedirectURL> </Account> </Response> </Autodiscover>
Spamihilator
   TestSPAM Mail für (SpamAssassin)
eine neue Mail mit folgenden Inhalt erstellen, Subjekt ist egal, Inhalt zählt. vergleichbar mit EICAR (Virenschutz Test)
Subject: Test spam mail (GTUBE) Inhalt: XJS*C4JDBQADN1.NSBN3*2IDNEN*GTUBE-STANDARD-ANTI-UBE-TEST-EMAIL*C.34X
# /etc/horde/horde3/conf.php echo "Horde3 configuration disabled by default because the administration/install wizard gives the exit (0); ... $conf['use_ssl'] = 2; ...
# /etc/apache2/sites-enabled/kolab ... DocumentRoot "/usr/share/horde3" Alias /horde3/ "/usr/share/horde3/" ...