Subversion Repositories Applications.projet

Compare Revisions

Ignore whitespace Rev 406 → Rev 407

/trunk/classes/ezmlm-php-2.0/services_vpopmail/.htaccess
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/trunk/classes/ezmlm-php-2.0/services_vpopmail/calendrier_messages.php
1,5 → 1,7
<?php
 
//error_reporting(E_ALL ^ E_STRICT ^ E_NOTICE ^ E_DEPRECATED);
error_reporting(-1); //E_ALL ^ E_STRICT ^ E_NOTICE ^ E_DEPRECATED);
//error_reporting(0);
include_once 'ezmlm-php-2.0/ezmlm.php' ;
 
 
6,8 → 8,11
// Parametrage de la liste
$info = new ezmlm_threads();
if (!$info) return 'Les fichiers de la liste ne sont pas visible sur le serveur' ;
 
extract($_GET, EXTR_OVERWRITE);
 
$info->forcehref = $url;
$info->listdir = '/home/vpopmail/domains/'.$domaine.'/'.$liste ;
$info->listdir = '/home/raphael/domains/'.$domaine.'/'.$liste ;
$info->listname = $liste;
$info->listdomain = $domaine ;
 
14,7 → 19,9
ob_start() ;
if (!$info->listmessages()) {
if (!$info) return 'Les fichiers de la liste ne sont pas visible sur le serveur' ;
 
}
 
$html = ob_get_contents() ;
ob_end_clean() ;
 
/trunk/classes/ezmlm-php-2.0/services_vpopmail/ajout_abonne.php
2,5 → 2,5
 
$repertoire = '/home/vpopmail/domains/'.$domaine.'/'.$liste ;
 
echo exec ('/usr/local/bin/ezmlm-sub '.$repertoire.' '.$mail, $output, $ret) ;
echo exec ('/usr/bin/ezmlm-sub '.$repertoire.' '.$mail, $output, $ret) ;
?>