Mudanças entre as edições de "DadaMail"
De MochilaWiki
Ir para navegaçãoIr para pesquisar (Nova página: Página do Projeto * http://dadamailproject.com/ instalando: wget -c http://ufpr.dl.sourceforge.net/sourceforge/mojomail/dada-3_0_2.tar.gz tar zxvf dada-3_0_2.tar.gz -d /usr/lib/cgi...) |
|||
Linha 2: | Linha 2: | ||
* http://dadamailproject.com/ | * http://dadamailproject.com/ | ||
− | instalando | + | |
− | wget -c http:// | + | == dependências == |
+ | echo "deb http://www.backports.org/debian lenny-backports main" >> /etc/apt/sources.list | ||
+ | wget -O - http://backports.org/debian/archive.key | apt-key add - | ||
+ | apt-get update | ||
+ | |||
+ | |||
+ | apt-get install libxml-rss-perl libio-socket-ssl-perl libgd-perl libmime-perl \ | ||
+ | libmime-lite-perl libhtml-scrubber-perl libnet-dns-perl libio-socket-ssl-perl \ | ||
+ | fckeditor | ||
+ | |||
+ | |||
+ | |||
+ | == instalando == | ||
+ | wget -c http://cloud.github.com/downloads/justingit/dada-mail/dada-4_0_4.tar.gz | ||
tar zxvf dada-3_0_2.tar.gz -d /usr/lib/cgi-bin/ | tar zxvf dada-3_0_2.tar.gz -d /usr/lib/cgi-bin/ | ||
− | + | chmod 750 /usr/lib/cgi-bin/dada/mail.cgi | |
− | |||
mkdir /home/dada/dada_files | mkdir /home/dada/dada_files | ||
chown -R www-data /home/dada/dada_files | chown -R www-data /home/dada/dada_files | ||
+ | mkdir /var/www/quijaua.com.br/boletim/userfiles | ||
+ | chown www-data /var/www/quijaua.com.br/boletim/userfiles | ||
− | + | == customizações == | |
+ | em DADA/Config.pm: | ||
na linha 110 insira a senha | na linha 110 insira a senha | ||
Linha 26: | Linha 41: | ||
$PROGRAM_URL ='http://www.changetoyoursite.com/cgi-bin/dada/mail.cgi'; | $PROGRAM_URL ='http://www.changetoyoursite.com/cgi-bin/dada/mail.cgi'; | ||
por | por | ||
− | $PROGRAM_URL ='http://boletim. | + | $PROGRAM_URL ='http://boletim.quijaua.com.br/cgi-bin/dada/mail.cgi'; |
1602 | 1602 | ||
− | $FCKEDITOR_URL ||= 'http://boletim. | + | $FCKEDITOR_URL ||= 'http://boletim.quijaua.com.br/fckeditor'; |
Agora acesse: | Agora acesse: | ||
− | * http://boletim. | + | * http://boletim.quijaua.com.br/cgi-bin/dada/mail.cgi |
Irá pedir para que você use a senha encriptografada e apresenta um sistema que gera.. insira a senha no local acima e altere: | Irá pedir para que você use a senha encriptografada e apresenta um sistema que gera.. insira a senha no local acima e altere: | ||
Linha 42: | Linha 57: | ||
$ROOT_PASS_IS_ENCRYPTED ||= 1; | $ROOT_PASS_IS_ENCRYPTED ||= 1; | ||
− | + | == fckeditor == | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
ln -s /etc/fckeditor/config.php /usr/share/fckeditor/editor/filemanager/connectors/php/ | ln -s /etc/fckeditor/config.php /usr/share/fckeditor/editor/filemanager/connectors/php/ | ||
Linha 60: | Linha 65: | ||
por | por | ||
$Config['Enabled'] = true ; | $Config['Enabled'] = true ; | ||
− | |||
− | |||
− | |||
− | |||
− | + | == no apache == | |
− | <VirtualHost | + | <VirtualHost 127.0.0.1:80> |
− | ServerName boletim. | + | ServerName boletim.quijaua.com.br |
− | ServerAlias www.boletim. | + | ServerAlias www.boletim.quijaua.com.br |
<br /> | <br /> | ||
− | DocumentRoot /var/www/ | + | DocumentRoot /var/www/quijaua.com.br/boletim/ |
− | |||
− | |||
<br /> | <br /> | ||
− | ErrorLog /var/log/apache2/boletim. | + | ErrorLog /var/log/apache2/boletim.quijaua.com.br-error.log |
− | CustomLog /var/log/apache2/boletim. | + | CustomLog /var/log/apache2/boletim.quijaua.com.br-access.log common |
<br /> | <br /> | ||
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ | ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ |
Edição das 22h52min de 22 de abril de 2010
Página do Projeto
dependências
echo "deb http://www.backports.org/debian lenny-backports main" >> /etc/apt/sources.list wget -O - http://backports.org/debian/archive.key | apt-key add - apt-get update
apt-get install libxml-rss-perl libio-socket-ssl-perl libgd-perl libmime-perl \ libmime-lite-perl libhtml-scrubber-perl libnet-dns-perl libio-socket-ssl-perl \ fckeditor
instalando
wget -c http://cloud.github.com/downloads/justingit/dada-mail/dada-4_0_4.tar.gz tar zxvf dada-3_0_2.tar.gz -d /usr/lib/cgi-bin/ chmod 750 /usr/lib/cgi-bin/dada/mail.cgi mkdir /home/dada/dada_files chown -R www-data /home/dada/dada_files mkdir /var/www/quijaua.com.br/boletim/userfiles chown www-data /var/www/quijaua.com.br/boletim/userfiles
customizações
em DADA/Config.pm:
na linha 110 insira a senha
$PROGRAM_ROOT_PASSWORD = 'root_password'; por $PROGRAM_ROOT_PASSWORD = 'suasenha';
142
$FILES = '/home/youraccount/dada_files'; por $FILES = '/home/dada/dada_files';
178
$PROGRAM_URL ='http://www.changetoyoursite.com/cgi-bin/dada/mail.cgi'; por $PROGRAM_URL ='http://boletim.quijaua.com.br/cgi-bin/dada/mail.cgi';
1602
$FCKEDITOR_URL ||= 'http://boletim.quijaua.com.br/fckeditor';
Agora acesse:
Irá pedir para que você use a senha encriptografada e apresenta um sistema que gera.. insira a senha no local acima e altere:
788
$ROOT_PASS_IS_ENCRYPTED ||= 0; por $ROOT_PASS_IS_ENCRYPTED ||= 1;
fckeditor
ln -s /etc/fckeditor/config.php /usr/share/fckeditor/editor/filemanager/connectors/php/
em /etc/fckeditor/config.php alterei
$Config['Enabled'] = false ;
por
$Config['Enabled'] = true ;
no apache
<VirtualHost 127.0.0.1:80> ServerName boletim.quijaua.com.br ServerAlias www.boletim.quijaua.com.br
DocumentRoot /var/www/quijaua.com.br/boletim/
ErrorLog /var/log/apache2/boletim.quijaua.com.br-error.log CustomLog /var/log/apache2/boletim.quijaua.com.br-access.log common
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
Alias /fckeditor/ /usr/share/fckeditor/
<Directory "/usr/share/fckeditor/"> Options Indexes MultiViews FollowSymLinks AllowOverride None Order allow,deny </Directory>
<Directory "/cgi-bin/"> Options +ExecCGI AddHandler cgi-script .cgi </Directory>
</VirtualHost>
Referências:
- cat /usr/share/doc/fckeditor/README.Debian
- https://labs.truelite.it/truedoc/wiki/DadaMailSetup
- http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide
- http://dadamailproject.com/installation/installation_advanced.html
- http://dadamailproject.com/installation/installation_adv_semi_auto.html
- http://devel.nkosi.org/cgi-bin/dada/mail.cgi/archive/mocambos/
- http://devel.nkosi.org/cgi-bin/dada/mail.cgi?flavor=sign_in&list=mocambos
- http://www.animaloutfitters.com/mailing_list/extras/documentation/html_version/dada2_to_dada3.pod.html
- http://dadamailproject.com/support/documentation-dada-3_0_2/change_root_password.cgi.html