roundcube 각종 플러그인 설정

리눅스/Mail|2015. 1. 23. 09:29
반응형

1. password (vpopmail + mysql 환경에서의 패스워드 변경)

vpopmail을 mysql과 연동하기 때문에 라운드큐브의 패스워드 변경 부분도 mysql과 연동되도록 설정한다.

 

플러그인 설정

roundcube 디렉토리/plugins/password 디렉토리에서 config.inc.php.dist 파일을 config.inc.php로 변경한 후

아래 부분 수정.

$rcmail_config['password_driver'] = 'sql';

$rcmail_config['password_confirm_current'] = true;

$rcmail_config['password_db_dsn'] = 'mysql://vpopmail:패스워드@localhost/vpopmail';

$rcmail_config['password_query'] = 'UPDATE vpopmail set pw_passwd=ENCRYPT(%p,concat("$1$",right(md5(rand()), 8),"$")),pw_clear_passwd=%p where pw_name=%l';

roundcube 디렉토리/config/main.inc.php

$rcmail_config['plugins'] = array('password');

2. Mark as Junk 2

스팸어쌔신이 설치되어 있을 경우 라운드큐브에서 받은 메일함의 스팸메일을 스팸폴더로 이동시키면서

스팸어쌔신 학습을 시킨다.

 

플러그인 설정

첨부된 markasjunk2.zip 파일을 압축해제한 후, roundcube 디렉토리/plugins 디렉토리에 markasjunk2 폴더를 업로드.

markasjunk2 폴더의 config.inc.php.dist 파일을 config.inc.php로 변경한 후 아래 부분 수정

$rcmail_config['markasjunk2_read_spam'] = true;

$rcmail_config['markasjunk2_detach_ham'] = true;

$rcmail_config['markasjunk2_spam_cmd'] = '/usr/bin/sa-learn --spam --username=%u %f';

$rcmail_config['markasjunk2_ham_cmd'] = '/usr/bin/sa-learn --ham --username=%u %f';

roundcube 디렉토리/config/main.inc.php

$rcmail_config['plugins'] = array('password','markasjunk2');

3. ContextMenu

메일 목록에서 오른쪽 마우스 클릭 시, 상단의 메뉴와 그 외 기능들을 contextmenu로 표시해 준다.

 

플러그인 설정

첨부된 contextmenu.zip 파일을 압축해제한 후, roundcube 디렉토리/plugins 디렉토리에 contextmenu 폴더 업로드

 

roundcube 디렉토리/config/main.inc.php

$rcmail_config['plugins'] = array('password','markasjunk2','contextmenu');

[출처] aramjo's Blog | 아람조 (http://aramjo.blog.me/120103753749)



contextmenu.zip

markasjunk2.zip


반응형

댓글()