Code

Fixed problems with mail folder retrieval while dot separated account ids were used
[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         }
255         /* Autocreate configured default folders */ 
256         $folders= $this->config->get_cfg_value("cyrusAutocreateFolders", null);
257         if ($folders) {
258           $foldersToCreate= explode(",", $folders);
259           $cyrus_delim= $this->cyrusUseSlashes?"/":".";
261           // Walk thru list of specified folders
262           foreach ($foldersToCreate as $folder) {
263             @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$this->account_id."</b>" , 
264               "<b>IMAP: Add/Update account folder ".$folder."</b> on server :".$this->MailServer);
265             if(!imap_createmailbox($this->imap_handle, $cfg["connect"].$this->account_id.$cyrus_delim.$folder)) {
266               $this->error= imap_last_error();
267               return(FALSE);
268             }
269           }
271         }
272       }
273     }
274     return(TRUE);
275   }
278   public function deleteMailbox()
279   {
280     mailMethod::deleteMailbox();
282     if(!$this->is_connected() || !$this->imap_handle){
283       trigger_error("Method not connected, catch error.");
284       return(FALSE);
285     }
287     $this->build_account_id ();
289     $cfg= $this->ServerList[$this->MailServer];
290     @imap_setacl ($this->imap_handle, $this->account_id, $cfg["admin"], "lrswipcda");
292     if ($this->config->get_cfg_value("cyrusDeleteMailbox", "true") == "true"){
293       if (!imap_deletemailbox($this->imap_handle, $cfg["connect"].$this->account_id)){
294         $this->error = imap_last_error();
295         return (FALSE);
296       }
297     } else{ 
298       msg_dialog::display(_("Mail info"),
299         sprintf(_("LDAP entry has been removed but cyrus mailbox (%s) is kept.\nPlease delete it manually!"),
300         $this->account_id), INFO_DIALOG);
301     }
302     return (TRUE);
303   }
305   
306   public function getMailboxList()
307   {
308     mailMethod::getMailboxList();
310     if(!$this->is_connected() || !$this->imap_handle){
311       trigger_error("Method not connected, catch error.");
312       return(array());
313     }
315     $result = array();
317     /* Get server config */
318     $cfg= $this->ServerList[$this->MailServer];
320     /* Create search string
321        And prepare replacements 
322      */ 
323     if(preg_match("/\@/",$this->account_id)){
324       if($this->cyrusUseSlashes){
325         $search = preg_replace("/\@/","/*@",$this->account_id);
326       }else{
327         $search = preg_replace("/\@/",".*@",$this->account_id);
328       }
329       $with_domain = TRUE;
330     }else{
331       if($this->cyrusUseSlashes){
332         $search = $this->account_id."/*";
333       }else{
334         $search = $this->account_id.".*";
335       }
336       $with_domain = FALSE;
337     }
338     $folder = $this->account_id;
339     if(preg_match("/\@/",$folder)){
340       $folder = preg_replace("/\@.*$/","",$folder);
341     }
343     /* Contact imap server */
344     $list = @imap_listmailbox($this->imap_handle, $cfg["connect"], $this->account_id);
345     $list2 = @imap_listmailbox($this->imap_handle, $cfg["connect"], $search);
347     /* Create list of returned folder names */
348     if (is_array($list)){
350       /* Merge in subfolders */
351       if(is_array($list2)){
352         $list = array_merge($list,$list2);
353       }
355       foreach ($list as $val){
356         $str = trim(preg_replace("/^\{[^\}]*+\}/","",$val));
357         if($with_domain){
358           $str = trim(preg_replace("/\@.*$/","",$str));
359         }
360         $str = preg_replace ("/^.*".preg_quote($folder, '/')."/","INBOX", 
361           mb_convert_encoding($str, "UTF-8", "UTF7-IMAP"));
362         $result[] = $str;      
363       }
364       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim(implode($result,", "),", "),
365           "<b>IMAP: Received mailbox folders.</b>");
366       $this->error = imap_last_error();
367     }else{
368       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,imap_last_error(),
369           "<b>IMAP: Cannot receive mailbox folders.</b>");
370       $this->error = imap_last_error();
371       return(array());
372     }
374     /* Append "INBOX" to the folder array if result is empty and request comes from user dialog */
375     if(!count($result)){
376       $result[] = "INBOX";
377     }
379     return($result);
380   }
383   /*! \brief  Returns configured acls
384    */
385   public function  getFolderACLs($folder_acls)
386   {
387     $this->reset_error();
389     /* imap_getacl available? */
390     if (!function_exists('imap_getacl')){
391       $this->error = _("The module imap_getacl is not implemented!");
392       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"The imap_getacl module is missing!",
393           "<b>IMAP: Cannot set folder acls.</b>");
394       return($folder_acls);
395     }
397     /* Get ACLs and merge them with the already given acls (ldap)
398      */
399     $this->build_account_id();
400     $acls = imap_getacl ($this->imap_handle, $this->account_id);
401     foreach($acls as $user => $acl){
402       if($user == "anyone") $user = "__anyone__"; // Map to internal placeholder
403       $folder_acls[$user] = $acl;
404     }
406     /* Merge given ACL with acl mapping
407        This ensures that no ACL will accidentally overwritten by gosa.
408      */
409     foreach($folder_acls as $user => $acl){
410       if(!isset($this->acl_mapping[$acl])){
411         $this->acl_mapping[$acl] = $acl;
412       }
413     }
415     return($folder_acls);
416   }
420   /*! \brief  Write ACLs back to imap or what ever
421    */
422   public function  setFolderACLs($permissions)
423   {
424     $this->reset_error();
426     /* imap_getacl available? */
427     if (!function_exists('imap_getacl')){
428       $this->error = _("The module imap_getacl is not implemented!");
429       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"The imap_getacl module is missing!",
430           "<b>IMAP: Cannot set folder acls.</b>");
431       return(FALSE);
432     }
434     /* Get list of subfolders */
435     $folders= $this->getMailboxList();
436     foreach ($folders as $subfolder){
437       $folder_id = $this->create_folder_id($subfolder);
439       /* Remove all acl's for this folder */
440       $users= @imap_getacl ($this->imap_handle, $folder_id);
441       
442       if(is_array($users)){
443         foreach ($users as $userid => $perms){
444           $userid = strtolower($userid);
445           imap_setacl ($this->imap_handle, $folder_id, $userid, "");
446           @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$folder_id." -> ".$userid,
447               "<b>IMAP: Removing folder permissions.</b>");
448         }
449       }
450     }
452     /* Set permissions for this folder */
453     foreach($folders as $subfolder){
454       $folder_id = $this->create_folder_id($subfolder);
456       foreach ($permissions as $user => $acl){
457         imap_setacl ($this->imap_handle, $folder_id, $user, $acl);
458         @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$folder_id." -> ".$user.": ".$acl,
459             "<b>IMAP: Setting new folder permissions.</b>");
460       }
461     }
462     return(TRUE);
463   }
466   public function saveSieveSettings()
467   {
468     mailMethod::saveSieveSettings();
470     // Check file integrity 
471     $files = array();
472     foreach(array("sieve-header.txt","sieve-spam.txt","sieve-mailsize.txt","sieve-vacation.txt","sieve-discard.txt") as $file){
473       if(!file_exists(CONFIG_DIR."/".$file) || ! is_readable(CONFIG_DIR."/".$file)){
474         $files[] = CONFIG_DIR."/".$file;
475         @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__ , CONFIG_DIR."/".$file,
476             "<b>Sieve template missing, please locate and move the template file: </b>");
477       }
478     }
479     if(count($files)){
480       $msg = sprintf(_("File '%s' does not exist!"),implode($files,", "));
481       $msg .= "&nbsp;"._("The sieve script may not be written correctly.");
482       msg_dialog::display(_("Warning"),$msg,WARNING_DIALOG);
483     }
485     /* Map attribute from parent class 
486      */
487     $mail = $this->parent->mail;
488     $gosaMailDeliveryMode = $this->parent->gosaMailDeliveryMode;
489     $gosaMailAlternateAddress = $this->parent->gosaMailAlternateAddress;
490     $gosaMailMaxSize = $this->parent->gosaMailMaxSize;
491     $gosaSpamMailbox = $this->parent->gosaSpamMailbox;
492     $gosaSpamSortLevel = $this->parent->gosaSpamSortLevel;
493     $gosaVacationMessage = $this->parent->gosaVacationMessage;
495     /* Try to login into sieve
496      */ 
497     $cfg = $this->ServerList[$this->MailServer];
498     $sieve= new sieve($cfg["sieve_server"], $cfg["sieve_port"], $this->getUAttribValue(),
499         $cfg["password"], $cfg["admin"],$cfg["sieve_option"]);
500     if (!$sieve->sieve_login()){
501       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$sieve->error_raw ,"<b>SIEVE: login failed.</b>");
502       $this->error = $sieve->error_raw;
503       return(FALSE);
504     }
506     /* Build spamlevel. Spamassassin tags mails with "*" for each integer
507        point of spam. So a spam level of 5.3 gets "*****" which can be
508        checked easily by spam filters */
509     $spamlevel= str_pad("",(int) $gosaSpamSortLevel,"*");
511     /* Get current sieve script named 'gosa'.
512         Check if it valid ("###GOSA" must be the first string).
513         If it is valid just replace it, if it is NOT valid
514          create a backup of the old 
515      */
516     $script= "";
517     if($sieve->sieve_listscripts()){
518       if (in_array_strict("gosa", $sieve->response)){
519         if(!$sieve->sieve_getscript("gosa")){
520           $this->error = sprintf(_("Cannot retrieve SIEVE script: %s"),to_string($sieve->error_raw));
521           @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$sieve->error_raw ,
522               "<b>SIEVE: Connot read 'gosa' sieve script.</b>");
523           $this->error = $sieve->error_raw;
524           return(FALSE);
525         }
527         $is_valid_script = FALSE;
528         foreach ($sieve->response as $line){
529           if(empty($line)) continue;
530           if (preg_match ("/^###GOSA/", $line) && strlen($script) == 0){
531             $is_valid_script = TRUE;
532           }
533           $line= rtrim($line);
534           $script .= $line;
535         }
537         if($is_valid_script || strlen($script) == 0 || empty($script)){
538           @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"" ,
539               "<b>SIEVE</b>: Sieve script 'gosa' was a valid GOsa script and will be replaced.");
540         }else{
541           $new_name = "non_gosa_".date("Ymd_H-i-s");
542           $sieve->sieve_sendscript($new_name, $script);
543           @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$this->sieve->error_raw ,
544               "<b>SIEVE</b>: Non GOsa sieve script. <b>Creating backup of the current sieve script '".$new_name."'.</b>");
545         }
546       }
547     }
550     /*****
551       Build up new sieve script here.
552      *****/
555     /* Only create a new one, if it is not empty */
556     $script= "";
557     if (is_integer(strpos($gosaMailDeliveryMode, "R")) ||
558         is_integer(strpos($gosaMailDeliveryMode, "C")) ||
559         is_integer(strpos($gosaMailDeliveryMode, "I")) ||
560         is_integer(strpos($gosaMailDeliveryMode, "V")) ||
561         is_integer(strpos($gosaMailDeliveryMode, "S"))){
563       $text= preg_replace('/"/', '\\"', implode ("", file(CONFIG_DIR."/sieve-header.txt")));
564       eval ("\$script.=\"$text\";");
565     }
567     /* Add anti-spam code */
568     if (is_integer(strpos($gosaMailDeliveryMode, "S"))){
569       $spambox= $gosaSpamMailbox;
570       $text= preg_replace('/"/', '\\"', implode ("", file(CONFIG_DIR."/sieve-spam.txt")));
571       eval ("\$script.=\"$text\";");
572     }
574     /* Add "reject due to mailsize" code, message is currently not
575        adjustable through GOsa. */
576     if (is_integer(strpos($gosaMailDeliveryMode, "R"))){
577       $maxsize= $gosaMailMaxSize;
578       $text= preg_replace('/"/', '\\"', implode ("", file(CONFIG_DIR."/sieve-mailsize.txt")));
579       eval ("\$script.=\"$text\";");
580     }
582     /* Add vacation information */
583     if (is_integer(strpos($gosaMailDeliveryMode, "V"))){
585       /* Sieve wants all destination addresses for the
586          vacation message, so we've to assemble them from
587          mail and mailAlternateAddress */
588       $addrlist= "\"".$mail."\"";
589       foreach ($gosaMailAlternateAddress as $val){
590         $addrlist .= ", \"$val\"";
591       }
592       $vacmsg= addslashes(addslashes($gosaVacationMessage));
593       $text= preg_replace('/"/', '\\"', implode ("", file(CONFIG_DIR."/sieve-vacation.txt")));
594       eval ("\$script.=\"$text\";");
595     }
597     /* If no local delivery is wanted, tell the script to discard the mail */
598     if (is_integer(strpos($gosaMailDeliveryMode, "I"))){
599       $text= preg_replace('/"/', '\\"', implode ("", file(CONFIG_DIR."/sieve-discard.txt")));
600       eval ("\$script.=\"$text\";");
601     }
603     /****
604       Sieve script build complete
605      ****/
607     /* Upload script and make it the default one */
608     if (!$sieve->sieve_sendscript("gosa", $script)){
609       $this->error = sprintf(_("Cannot store SIEVE script: %s"), to_string($sieve->error_raw));
610       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "Error was: ".to_string($sieve->error_raw) ,
611         "<b>SIEVE: Writing new Sieve script failed!</b>");
612       return(FALSE);
613     }
615     if(!$sieve->sieve_setactivescript("gosa")){
616       $this->error = sprintf(_("Cannot activate SIEVE script: %s"), to_string($sieve->error_raw));
617       return(FALSE);
618     }
620     $sieve->sieve_logout();
621   }
624 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
625 ?>