Code

Applied patch to disable imap folder deletion
[gosa.git] / gosa-plugins / mail / personal / mail / class_mail-methods-cyrus.inc
1 <?php
4 class mailMethodCyrus extends mailMethod{
6   protected $ServerList = array();
7   protected $imap_handle = NULL;
8   protected $quota_loaded = FALSE;
9    
10   /* Allow modification of account_ids for existing mail accounts */
11   protected $modifyableMail   = FALSE;
13   /* Allow modification of the mail server attribute existing mail accounts */
14   protected $modifyableServer = FALSE;
16   /* Enforces same value for 'mail' as used for 'cn' */
17   protected $mailEqualsCN   = FALSE; 
19   protected $enableDomainSelection= FALSE;
20   protected $enableQuota          = TRUE;
21   protected $enableSieveManager   = TRUE;
22   protected $enableVacationRange  = TRUE;
23   protected $enableFolderTypes    = FALSE;
25   protected function init()
26   {
27     mailMethod::init();
28     if(isset($this->config->data['SERVERS']['IMAP'])){
29       $this->ServerList = $this->config->data['SERVERS']['IMAP']; 
30     }
31   }
33   
34   public function connect()
35   {
36     mailMethod::connect();
38     if(!count($this->ServerList)){
39       $this->error = _("There are no IMAP compatible mail servers defined!");
40       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,
41           "<b>IMAP: No mail servers configured, check systems->server->service->imap.</b>","");
42       return(FALSE);
43     }elseif (!isset($this->ServerList[$this->MailServer])){
44       $this->error = _("Mail server for this account is invalid!");
45       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,
46           "<b>IMAP: The selected mail server '".$this->MailServer."' is invalid.</b>",""); 
47       return(FALSE);
48     } else {
49       $cfg= $this->ServerList[$this->MailServer];
50     }
52     /* For some reason, hiding errors with @ does not wor here... */
53     if(!isset($cfg['connect']))   $cfg['connect']="";
54     if(!isset($cfg['admin']))     $cfg['admin']="";
55     if(!isset($cfg['password']))  $cfg['password']="";
57     /* Setting connect timeout to 10 seconds,
58         else the GOsa UI may freeze for 60 seconds.
59        (PHP default is 'default_socket_timeout = 60') */
60     $timeout = $this->config->get_cfg_value("imapTimeout",10);
61     @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$timeout,
62           "<b>IMAP: Setting imap connect timeout to</b> (seconds)");
63     imap_timeout(1, $timeout);
65     $this->imap_handle = @imap_open($cfg['connect'], $cfg['admin'], $cfg['password'], OP_HALFOPEN);
67     /* Mailbox reachable? */
68     if ($this->imap_handle === FALSE){
69       $this->error = imap_last_error();
71       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"<b>Failed</b> :".imap_last_error(),
72         "<b>IMAP:</b> ".$cfg['admin']."@".$cfg['connect']);
74       return (FALSE);
75       $this->connected = FALSE;
76     }
77     @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"<b>successful</b>",
78         "<b>IMAP:</b> ".$cfg['admin']."@".$cfg['connect']);
79     $this->connected = TRUE;
81     return (TRUE);
82   }
85   public function account_exists()
86   {
87     if(!$this->is_connected() || !$this->imap_handle){
88       trigger_error("Method not connected, catch error.");
89       return(array());
90     }
92     /* Get server config */
93     $cfg= $this->ServerList[$this->MailServer];
94     $list = @imap_listmailbox($this->imap_handle, $cfg["connect"], $this->account_id);
95     $res = is_array($list) && count($list);
96     if($res){
97       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"","<b>IMAP: Account exists in imap server.</b>"); 
98     }else{
99       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"","<b>IMAP: Account seems NOT to exists in imap server.</b>"); 
100     }
101     return($res);
102   }
104   public function disconnect()
105   {
106     mailMethod::disconnect();
107     if($this->is_connected()){
108       @imap_close ($this->imap_handle);
109     }
110   }
113   public function is_connected()
114   {
115     $ret =    mailMethod::is_connected();
116     return($ret && $this->imap_handle);
117   }
119   protected function loadQuota()
120   {
121     if(!$this->quotaEnabled()) return(TRUE);
122     if(!$this->is_connected() || !$this->imap_handle){
123       trigger_error("Method not connected, catch error.");
124       return(FALSE);
125     }
127     $this->reset_error();
129     /* Load quota settings */
130     $result = array("quotaUsage"=>"","gosaMailQuota"=>"");
131     $quota_value = @imap_get_quota($this->imap_handle, $this->account_id);
133     /* Reset error queue, imap_qet_quota() will fail if the quota wasn't set yet.
134      */
135     imap_errors();
137     if(is_array($quota_value) && count($quota_value)) {
138       if (isset($quota_value["STORAGE"]) && is_array($quota_value["STORAGE"])){
140         /* use for PHP >= 4.3 */
141         if($quota_value["STORAGE"]['limit'] == 2147483647){
142           $result['quotaUsage']=    (int) ($quota_value["STORAGE"]['usage'] / 1024);
143           $result['gosaMailQuota']=  "";
144         }else{
145           $result['quotaUsage']=    (int) ($quota_value["STORAGE"]['usage'] / 1024);
146           $result['gosaMailQuota']= (int) ($quota_value["STORAGE"]['limit'] / 1024);
147         }
148       } else {
150         /* backward icompatible */
151         if($quota_value['usage'] == 2147483647){
152           $result['quotaUsage']=    (int) ($quota_value['usage'] / 1024);
153           $result['gosaMailQuota']= "";
154         }else{
155           $result['quotaUsage']=    (int) ($quota_value['usage'] / 1024);
156           $result['gosaMailQuota']= (int) ($quota_value['limit'] / 1024);
157         }
158       }
159     }
160     $this->quotaValue = $result['gosaMailQuota'];
161     $this->quotaUsage = $result['quotaUsage'];
163     /* Write debug output */
164     if(is_array($quota_value)){
165       if($this->quotaValue == ""){
166         $quota = "(".$this->quotaUsage." / unlimited)";
167       }else{
168         $quota = "(".$this->quotaUsage." / ".$this->quotaValue.")";
169       }
170       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $quota , 
171           "<b>IMAP: Successfully received account quota</b>");
172     }else{
173       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error() , 
174           "<b>IMAP: Failed to receive account quota</b>");
175     }
176   }
178   public function getQuota($quota)
179   {
180     mailMethod::getQuota($quota);
181     if(!$this->quota_loaded){
182       $this->quota_loaded = TRUE;
183       $this->loadQuota();
184     }
185     return($this->quotaValue);
186   }
188   public function getQuotaUsage()
189   {
190     mailMethod::getQuotaUsage();
191     if(!$this->quota_loaded){
192       $this->quota_loaded = TRUE;
193       $this->loadQuota();
194     }
195     return($this->quotaUsage);
196   }
198   public function setQuota($number)
199   {
200     mailMethod::setQuota($number);    
202     if(!$this->quotaEnabled()) return(TRUE);
203     if(!$this->is_connected() || !$this->imap_handle){
204       trigger_error("Method not connected, catch error.");
205       return(FALSE);
206     }
208     $this->build_account_id();
210     /* Workaround for the php imap extension */
211     if (($this->quotaValue == "") || ($this->quotaValue== "2147483647")){
212       $this->quotaValue= "2147483647";
213     }elseif($this->quotaValue > 0){
214       $this->quotaValue = $this->quotaValue *1024;
215     }
216     $debug_number = $this->quotaValue." KB";
217     if($this->quotaValue == "2147483647"){
218       $debug_number .= "<i>Unlimited</i>";
219     }
221     if (!imap_set_quota($this->imap_handle, $this->account_id, $this->quotaValue)){
222       msg_dialog::display(_("IMAP error"), sprintf(_("Cannot modify IMAP mailbox quota: %s"),
223             '<br><br><i>'.imap_last_error().'</i>'), ERROR_DIALOG);
224       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$this->account_id.": (".$debug_number.")</b>" , 
225           "<b>IMAP: Set account quota</b> on server '".$this->MailServer."' <b>".imap_last_error()."</b>");
226       return (FALSE);
227     }
228     @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$this->account_id.": (".$debug_number.")</b>" , 
229         "<b>IMAP: Set account quota</b> on server :".$this->MailServer);
230     return (TRUE);
231   }
234   public function updateMailbox()
235   {
236     mailMethod::updateMailbox();
238     if(!$this->is_connected() || !$this->imap_handle){
239       trigger_error("Method not connected, catch error.");
240       return(FALSE);
241     }
242   
243     $this->build_account_id ();
244     if($this->is_connected()){
245       $cfg= $this->ServerList[$this->MailServer];
246       $list = imap_listmailbox($this->imap_handle, $cfg["connect"], $this->account_id);
247       if ($list === FALSE){
248         @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$this->account_id."</b>" , 
249           "<b>IMAP: Add/Update account</b> on server :".$this->MailServer);
250         if (!imap_createmailbox($this->imap_handle, $cfg["connect"]. $this->account_id)){
251           $this->error = imap_last_error();
252           return(FALSE);
253         }
254       }
255     }
256     return(TRUE);
257   }
260   public function deleteMailbox()
261   {
262     mailMethod::deleteMailbox();
264     if(!$this->is_connected() || !$this->imap_handle){
265       trigger_error("Method not connected, catch error.");
266       return(FALSE);
267     }
269     $this->build_account_id ();
271     $cfg= $this->ServerList[$this->MailServer];
272     @imap_setacl ($this->imap_handle, $this->account_id, $cfg["admin"], "lrswipcda");
274     if ($this->config->get_cfg_value("cyrusDeleteMailbox", "true") == "true"){
275       if (!imap_deletemailbox($this->imap_handle, $cfg["connect"].$this->account_id)){
276         $this->error = imap_last_error();
277         return (FALSE);
278       }
279     } else{ 
280       msg_dialog::display(_("Mail info"),
281         sprintf(_("LDAP entry has been removed but cyrus mailbox (%s) is kept.\nPlease delete it manually!"),
282         $this->account_id), INFO_DIALOG);
283     }
284     return (TRUE);
285   }
287   
288   public function getMailboxList()
289   {
290     mailMethod::getMailboxList();
292     if(!$this->is_connected() || !$this->imap_handle){
293       trigger_error("Method not connected, catch error.");
294       return(array());
295     }
297     $result = array();
299     /* Get server config */
300     $cfg= $this->ServerList[$this->MailServer];
302     /* Create search string
303        And prepare replacements 
304      */ 
305     if(preg_match("/\@/",$this->account_id)){
306       $search = preg_replace("/\@/","/*@",$this->account_id);
307       $with_domain = TRUE;
308     }else{
309       $search = $this->account_id."/*";
310       $with_domain = FALSE;
311     }
312     $folder = $this->account_id;
313     if(preg_match("/\@/",$folder)){
314       $folder = preg_replace("/\@.*$/","",$folder);
315     }
317     /* Contact imap server */
318     $list = @imap_listmailbox($this->imap_handle, $cfg["connect"], $this->account_id);
319     $list2 = @imap_listmailbox($this->imap_handle, $cfg["connect"], $search);
321     /* Create list of returned folder names */
322     if (is_array($list)){
324       /* Merge in subfolders */
325       if(is_array($list2)){
326         $list = array_merge($list,$list2);
327       }
329       foreach ($list as $val){
330         $str = trim(preg_replace("/^\{[^\}]*+\}/","",$val));
331         if($with_domain){
332           $str = trim(preg_replace("/\@.*$/","",$str));
333         }
334         $str = preg_replace ("/^.*".preg_quote($folder, '/')."/","INBOX", 
335           mb_convert_encoding($str, "UTF-8", "UTF7-IMAP"));
336         $result[] = $str;      
337       }
338       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim(implode($result,", "),", "),
339           "<b>IMAP: Received mailbox folders.</b>");
340       $this->error = imap_last_error();
341     }else{
342       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,imap_last_error(),
343           "<b>IMAP: Cannot receive mailbox folders.</b>");
344       $this->error = imap_last_error();
345       return(array());
346     }
348     /* Append "INBOX" to the folder array if result is empty and request comes from user dialog */
349     if(!count($result)){
350       $result[] = "INBOX";
351     }
353     return($result);
354   }
357   /*! \brief  Returns configured acls
358    */
359   public function  getFolderACLs($folder_acls)
360   {
361     $this->reset_error();
363     /* imap_getacl available? */
364     if (!function_exists('imap_getacl')){
365       $this->error = _("The module imap_getacl is not implemented!");
366       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"The imap_getacl module is missing!",
367           "<b>IMAP: Cannot set folder acls.</b>");
368       return($folder_acls);
369     }
371     /* Get ACLs and merge them with the already given acls (ldap)
372      */
373     $this->build_account_id();
374     $acls = imap_getacl ($this->imap_handle, $this->account_id);
375     foreach($acls as $user => $acl){
376       if($user == "anyone") $user = "__anyone__"; // Map to internal placeholder
377       $folder_acls[$user] = $acl;
378     }
380     /* Merge given ACL with acl mapping
381        This ensures that no ACL will accidentally overwritten by gosa.
382      */
383     foreach($folder_acls as $user => $acl){
384       if(!isset($this->acl_mapping[$acl])){
385         $this->acl_mapping[$acl] = $acl;
386       }
387     }
389     return($folder_acls);
390   }
394   /*! \brief  Write ACLs back to imap or what ever
395    */
396   public function  setFolderACLs($permissions)
397   {
398     $this->reset_error();
400     /* imap_getacl available? */
401     if (!function_exists('imap_getacl')){
402       $this->error = _("The module imap_getacl is not implemented!");
403       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"The imap_getacl module is missing!",
404           "<b>IMAP: Cannot set folder acls.</b>");
405       return(FALSE);
406     }
408     /* Get list of subfolders */
409     $folders= $this->getMailboxList();
410     foreach ($folders as $subfolder){
411       $folder_id = $this->create_folder_id($subfolder);
413       /* Remove all acl's for this folder */
414       $users= @imap_getacl ($this->imap_handle, $folder_id);
415       
416       if(is_array($users)){
417         foreach ($users as $userid => $perms){
418           $userid = strtolower($userid);
419           imap_setacl ($this->imap_handle, $folder_id, $userid, "");
420           @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$folder_id." -> ".$userid,
421               "<b>IMAP: Removing folder permissions.</b>");
422         }
423       }
424     }
426     /* Set permissions for this folder */
427     foreach($folders as $subfolder){
428       $folder_id = $this->create_folder_id($subfolder);
430       foreach ($permissions as $user => $acl){
431         imap_setacl ($this->imap_handle, $folder_id, $user, $acl);
432         @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$folder_id." -> ".$user.": ".$acl,
433             "<b>IMAP: Setting new folder permissions.</b>");
434       }
435     }
436     return(TRUE);
437   }
440   public function saveSieveSettings()
441   {
442     mailMethod::saveSieveSettings();
444     // Check file integrity 
445     $files = array();
446     foreach(array("sieve-header.txt","sieve-spam.txt","sieve-mailsize.txt","sieve-vacation.txt","sieve-discard.txt") as $file){
447       if(!file_exists(CONFIG_DIR."/".$file) || ! is_readable(CONFIG_DIR."/".$file)){
448         $files[] = CONFIG_DIR."/".$file;
449         @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__ , CONFIG_DIR."/".$file,
450             "<b>Sieve template missing, please locate and move the template file: </b>");
451       }
452     }
453     if(count($files)){
454       $msg = sprintf(_("File '%s' does not exist!"),implode($files,", "));
455       $msg .= "&nbsp;"._("The sieve script may not be written correctly.");
456       msg_dialog::display(_("Warning"),$msg,WARNING_DIALOG);
457     }
459     /* Map attribute from parent class 
460      */
461     $mail = $this->parent->mail;
462     $gosaMailDeliveryMode = $this->parent->gosaMailDeliveryMode;
463     $gosaMailAlternateAddress = $this->parent->gosaMailAlternateAddress;
464     $gosaMailMaxSize = $this->parent->gosaMailMaxSize;
465     $gosaSpamMailbox = $this->parent->gosaSpamMailbox;
466     $gosaSpamSortLevel = $this->parent->gosaSpamSortLevel;
467     $gosaVacationMessage = $this->parent->gosaVacationMessage;
469     /* Try to login into sieve
470      */ 
471     $cfg = $this->ServerList[$this->MailServer];
472     $sieve= new sieve($cfg["sieve_server"], $cfg["sieve_port"], $this->getUAttribValue(),
473         $cfg["password"], $cfg["admin"],$cfg["sieve_option"]);
474     if (!$sieve->sieve_login()){
475       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$sieve->error_raw ,"<b>SIEVE: login failed.</b>");
476       $this->error = $sieve->error_raw;
477       return(FALSE);
478     }
480     /* Build spamlevel. Spamassassin tags mails with "*" for each integer
481        point of spam. So a spam level of 5.3 gets "*****" which can be
482        checked easily by spam filters */
483     $spamlevel= str_pad("",(int) $gosaSpamSortLevel,"*");
485     /* Get current sieve script named 'gosa'.
486         Check if it valid ("###GOSA" must be the first string).
487         If it is valid just replace it, if it is NOT valid
488          create a backup of the old 
489      */
490     $script= "";
491     if($sieve->sieve_listscripts()){
492       if (in_array("gosa", $sieve->response)){
493         if(!$sieve->sieve_getscript("gosa")){
494           $this->error = sprintf(_("Cannot retrieve SIEVE script: %s"),to_string($sieve->error_raw));
495           @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$sieve->error_raw ,
496               "<b>SIEVE: Connot read 'gosa' sieve script.</b>");
497           $this->error = $sieve->error_raw;
498           return(FALSE);
499         }
501         $is_valid_script = FALSE;
502         foreach ($sieve->response as $line){
503           if(empty($line)) continue;
504           if (preg_match ("/^###GOSA/", $line) && strlen($script) == 0){
505             $is_valid_script = TRUE;
506           }
507           $line= rtrim($line);
508           $script .= $line;
509         }
511         if($is_valid_script || strlen($script) == 0 || empty($script)){
512           @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"" ,
513               "<b>SIEVE</b>: Sieve script 'gosa' was a valid GOsa script and will be replaced.");
514         }else{
515           $new_name = "non_gosa_".date("Ymd_H-i-s");
516           $sieve->sieve_sendscript($new_name, $script);
517           @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$this->sieve->error_raw ,
518               "<b>SIEVE</b>: Non GOsa sieve script. <b>Creating backup of the current sieve script '".$new_name."'.</b>");
519         }
520       }
521     }
524     /*****
525       Build up new sieve script here.
526      *****/
529     /* Only create a new one, if it is not empty */
530     $script= "";
531     if (is_integer(strpos($gosaMailDeliveryMode, "R")) ||
532         is_integer(strpos($gosaMailDeliveryMode, "C")) ||
533         !is_integer(strpos($gosaMailDeliveryMode, "L")) ||
534         is_integer(strpos($gosaMailDeliveryMode, "V")) ||
535         is_integer(strpos($gosaMailDeliveryMode, "S"))){
537       $text= preg_replace('/"/', '\\"', implode ("", file(CONFIG_DIR."/sieve-header.txt")));
538       eval ("\$script.=\"$text\";");
539     }
541     /* Add anti-spam code */
542     if (is_integer(strpos($gosaMailDeliveryMode, "S"))){
543       $spambox= $gosaSpamMailbox;
544       $text= preg_replace('/"/', '\\"', implode ("", file(CONFIG_DIR."/sieve-spam.txt")));
545       eval ("\$script.=\"$text\";");
546     }
548     /* Add "reject due to mailsize" code, message is currently not
549        adjustable through GOsa. */
550     if (is_integer(strpos($gosaMailDeliveryMode, "R"))){
551       $maxsize= $gosaMailMaxSize;
552       $text= preg_replace('/"/', '\\"', implode ("", file(CONFIG_DIR."/sieve-mailsize.txt")));
553       eval ("\$script.=\"$text\";");
554     }
556     /* Add vacation information */
557     if (is_integer(strpos($gosaMailDeliveryMode, "V"))){
559       /* Sieve wants all destination addresses for the
560          vacation message, so we've to assemble them from
561          mail and mailAlternateAddress */
562       $addrlist= "\"".$mail."\"";
563       foreach ($gosaMailAlternateAddress as $val){
564         $addrlist .= ", \"$val\"";
565       }
566       $vacmsg= $gosaVacationMessage;
567       $text= preg_replace('/"/', '\\"', implode ("", file(CONFIG_DIR."/sieve-vacation.txt")));
568       eval ("\$script.=\"$text\";");
569     }
571     /* If no local delivery is wanted, tell the script to discard the mail */
572     if (!is_integer(strpos($gosaMailDeliveryMode, "L"))){
573       $text= preg_replace('/"/', '\\"', implode ("", file(CONFIG_DIR."/sieve-discard.txt")));
574       eval ("\$script.=\"$text\";");
575     }
577     /****
578       Sieve script build complete
579      ****/
581     /* Upload script and make it the default one */
582     if (!$sieve->sieve_sendscript("gosa", $script)){
583       $this->error = sprintf(_("Cannot store SIEVE script: %s"), to_string($sieve->error_raw));
584       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "Error was: ".to_string($sieve->error_raw) ,
585         "<b>SIEVE: Writing new Sieve script failed!</b>");
586       return(FALSE);
587     }
589     if(!$sieve->sieve_setactivescript("gosa")){
590       $this->error = sprintf(_("Cannot activate SIEVE script: %s"), to_string($sieve->error_raw));
591       return(FALSE);
592     }
594     $sieve->sieve_logout();
595   }
598 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
599 ?>