Archive

You are currently browsing the Internet Marketing Programmierung blog archives for September, 2009.

Sep

9

symfony day 2009 in Köln

By Olaf Waltersdorf

In Köln fand die erste deutsche symfony Konferenz statt und war für mich ein voller Erfolg. Ich bin richtig motiviert und inspiriert von diesem Event nach Hause gefahren. Die Redner waren toll, die Themen waren toll, die Aussicht aus dem 28. Stock auf den Kölner Dom waren toll, einfach alles toll toll toll :)

Vielen Dank nochmal an den Ausrichter interlutions!

Hoffentlich sind bald alle Slideshows da. Jedenfalls ein Hoch auf symfony 1.3 und Doctrine 1.2!

Sep

8

SysCp mit roundcube webmail

By Olaf Waltersdorf

In SysCP 1.4.2.1 ist squirrelmail als Standard webmail definiert. Wer es etwas “neumodischer” mag, sollte mal einen Blick auf roundcubemail werfen: eine kleine webmail Software, die auf PHP/MySQL basiert und per AJAX ein nettes Userinterface anbietet.

Um roundcoube 0.3 stable zur Zusammenarbeit mit den IMAP Konten (dovecot) von SysCp zu bewegen, muss man nur folgende Schritte durchführen:

1. roundcube herunterladen und nach Anleitung installieren

2. Die Datei config/main.inc.php bearbeiten

IMAP Einstellungen

// IMAP auth type. Can be "auth" (CRAM-MD5), "plain" (PLAIN) or "check" to auto detect.
// Optional, defaults to "check"
$rcmail_config['imap_auth_type'] = null;

zu:

$rcmail_config['imap_auth_type'] = 'plain';

SMTP Einstellungen:

// SMTP username (if required) if you use %u as the username RoundCube
// will use the current username for login
$rcmail_config['smtp_user'] = '%u';

// SMTP password (if required) if you use %p as the password RoundCube
// will use the current user's password for login
$rcmail_config['smtp_pass'] = '%p';

// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
// best server supported one)
$rcmail_config['smtp_auth_type'] = 'LOGIN';