| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  | $Id$ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-27 18:47:12 +00:00
										 |  |  |   This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/) | 
					
						
							| 
									
										
										
										
											2015-01-07 17:16:35 +00:00
										 |  |  |   Copyright (C) 2004 - 2015  Roland Gruber | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |   it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |   the Free Software Foundation; either version 2 of the License, or | 
					
						
							|  |  |  |   (at your option) any later version. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |   but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |   GNU General Public License for more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |   along with this program; if not, write to the Free Software | 
					
						
							|  |  |  |   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  | * Provides mail routing for user accounts. | 
					
						
							|  |  |  | * | 
					
						
							|  |  |  | * @package modules | 
					
						
							|  |  |  | * @author Roland Gruber | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  | * Provides mail routing for users. | 
					
						
							|  |  |  | * | 
					
						
							|  |  |  | * @package modules | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | class inetLocalMailRecipient extends baseModule { | 
					
						
							| 
									
										
										
										
											2006-08-13 12:58:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-20 13:00:42 +00:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	* Returns true if this module can manage accounts of the current type, otherwise false. | 
					
						
							| 
									
										
										
										
											2015-08-15 18:11:54 +00:00
										 |  |  | 	* | 
					
						
							| 
									
										
										
										
											2014-04-20 13:00:42 +00:00
										 |  |  | 	* @return boolean true if module fits | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  | 	public function can_manage() { | 
					
						
							|  |  |  | 		return in_array($this->get_scope(), array('user')); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	* Returns meta data that is interpreted by parent class | 
					
						
							|  |  |  | 	* | 
					
						
							|  |  |  | 	* @return array array with meta data | 
					
						
							| 
									
										
										
										
											2015-08-15 18:11:54 +00:00
										 |  |  | 	* | 
					
						
							| 
									
										
										
										
											2008-02-03 14:28:28 +00:00
										 |  |  | 	* @see baseModule::get_metaData() | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 	*/ | 
					
						
							|  |  |  | 	function get_metaData() { | 
					
						
							|  |  |  | 		$return = array(); | 
					
						
							| 
									
										
										
										
											2007-11-19 18:42:03 +00:00
										 |  |  | 		// icon
 | 
					
						
							| 
									
										
										
										
											2007-12-01 12:34:52 +00:00
										 |  |  | 		$return['icon'] = 'mailBig.png'; | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 		// alias name
 | 
					
						
							|  |  |  | 		$return["alias"] = _("Mail routing"); | 
					
						
							|  |  |  | 		// module dependencies
 | 
					
						
							|  |  |  | 		$return['dependencies'] = array('depends' => array(), 'conflicts' => array()); | 
					
						
							| 
									
										
										
										
											2006-04-05 15:48:27 +00:00
										 |  |  | 		// managed object classes
 | 
					
						
							|  |  |  | 		$return['objectClasses'] = array('inetLocalMailRecipient'); | 
					
						
							| 
									
										
										
										
											2006-05-13 08:55:31 +00:00
										 |  |  | 		// managed attributes
 | 
					
						
							|  |  |  | 		$return['attributes'] = array('mailLocalAddress', 'mailHost', 'mailRoutingAddress'); | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 		// help Entries
 | 
					
						
							|  |  |  | 		$return['help'] = array( | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 			'mailRoutingAddress' => array( | 
					
						
							| 
									
										
										
										
											2012-02-04 15:56:31 +00:00
										 |  |  | 				"Headline" => _("Routing address"), 'attr' => 'mailRoutingAddress', | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 				"Text" => _("This is the target email address for the user's mails.") | 
					
						
							|  |  |  | 			), | 
					
						
							|  |  |  | 			'localAdr' => array( | 
					
						
							| 
									
										
										
										
											2012-02-04 15:56:31 +00:00
										 |  |  | 				"Headline" => _("Local address"), 'attr' => 'mailLocalAddress', | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 				"Text" => _("This is one of the users public email addresses.") | 
					
						
							|  |  |  | 			), | 
					
						
							|  |  |  | 			'localAdrList' => array( | 
					
						
							| 
									
										
										
										
											2012-02-04 15:56:31 +00:00
										 |  |  | 				"Headline" => _("Local address list"), 'attr' => 'mailLocalAddress', | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 				"Text" => _("This is a comma separated list of the users public email addresses.") | 
					
						
							|  |  |  | 			), | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 			'mailHost' => array( | 
					
						
							| 
									
										
										
										
											2012-02-04 15:56:31 +00:00
										 |  |  | 				"Headline" => _("Mail server"), 'attr' => 'mailHost', | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 				"Text" => _("This is the mail server for the user.") | 
					
						
							|  |  |  | 			)); | 
					
						
							|  |  |  | 		// profile options
 | 
					
						
							| 
									
										
										
										
											2010-09-18 16:11:43 +00:00
										 |  |  | 		$profileContainer = new htmlTable(); | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 		$profileContainer->addElement(new htmlTableExtendedInputField(_('Mail server'), 'inetLocalMailRecipient_host', null, 'mailHost')); | 
					
						
							| 
									
										
										
										
											2010-09-18 16:11:43 +00:00
										 |  |  | 		$return['profile_options'] = $profileContainer; | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 		// profile checks
 | 
					
						
							|  |  |  | 		$return['profile_checks']['inetLocalMailRecipient_host'] = array( | 
					
						
							|  |  |  | 			'type' => 'ext_preg', | 
					
						
							|  |  |  | 			'regex' => 'DNSname', | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 			'error_message' => $this->messages['mailHost'][0]); | 
					
						
							| 
									
										
										
										
											2005-01-07 10:55:05 +00:00
										 |  |  | 		// profile mappings
 | 
					
						
							|  |  |  | 		$return['profile_mappings'] = array( | 
					
						
							|  |  |  | 			'inetLocalMailRecipient_host' => 'mailHost' | 
					
						
							|  |  |  | 		); | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 		// upload fields
 | 
					
						
							|  |  |  | 		$return['upload_columns'] = array( | 
					
						
							|  |  |  | 			array( | 
					
						
							|  |  |  | 				'name' => 'inetLocalMailRecipient_routingAdr', | 
					
						
							|  |  |  | 				'description' => _('Routing address'), | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 				'help' => 'mailRoutingAddress', | 
					
						
							| 
									
										
										
										
											2007-06-10 14:51:35 +00:00
										 |  |  | 				'example' => _('smiller@otherdomain.org') | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 			), | 
					
						
							|  |  |  | 			array( | 
					
						
							|  |  |  | 				'name' => 'inetLocalMailRecipient_localAdr', | 
					
						
							|  |  |  | 				'description' => _('Local address list'), | 
					
						
							|  |  |  | 				'help' => 'localAdrList', | 
					
						
							| 
									
										
										
										
											2007-06-10 14:51:35 +00:00
										 |  |  | 				'example' => _('smiller@yourdomain.org') | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 			), | 
					
						
							|  |  |  | 			array( | 
					
						
							|  |  |  | 				'name' => 'inetLocalMailRecipient_server', | 
					
						
							|  |  |  | 				'description' => _('Mail server'), | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 				'help' => 'mailHost', | 
					
						
							| 
									
										
										
										
											2007-06-10 14:51:35 +00:00
										 |  |  | 				'example' => _('mail.yourdomain.org') | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 			) | 
					
						
							|  |  |  | 		); | 
					
						
							|  |  |  | 		// available PDF fields
 | 
					
						
							|  |  |  | 		$return['PDF_fields'] = array( | 
					
						
							| 
									
										
										
										
											2010-04-05 12:38:23 +00:00
										 |  |  | 			'routingAdr' => _('Routing address'), | 
					
						
							|  |  |  | 			'localAdr' => _('Local address list'), | 
					
						
							|  |  |  | 			'host' => _('Mail server') | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 		); | 
					
						
							|  |  |  | 		return $return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	* This function fills the error message array with messages | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  | 	function load_Messages() { | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 		$this->messages['mailRoutingAddress'][0] = array('ERROR', 'Routing address is invalid!');  // third array value is set dynamically
 | 
					
						
							|  |  |  | 		$this->messages['mailRoutingAddress'][1] = array('ERROR', _('Account %s:') . ' inetLocalMailRecipient_routingAdr', 'Routing address is invalid!'); | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 		$this->messages['localAdr'][0] = array('ERROR', 'Local address is invalid!');  // third array value is set dynamically
 | 
					
						
							|  |  |  | 		$this->messages['localAdr'][1] = array('ERROR', _('Account %s:') . ' inetLocalMailRecipient_localAdr', 'Local address is invalid!'); | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 		$this->messages['mailHost'][0] = array('ERROR', 'Mail server is invalid!');  // third array value is set dynamically
 | 
					
						
							|  |  |  | 		$this->messages['mailHost'][1] = array('ERROR', _('Account %s:') . ' inetLocalMailRecipient_server', 'Mail server is invalid!'); | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-08-13 12:58:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2007-11-03 14:17:19 +00:00
										 |  |  | 	 * Returns the HTML meta data for the main account page. | 
					
						
							| 
									
										
										
										
											2015-08-15 18:11:54 +00:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2010-09-18 16:11:43 +00:00
										 |  |  | 	 * @return htmlElement HTML meta data | 
					
						
							| 
									
										
										
										
											2007-11-03 14:17:19 +00:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2006-08-13 12:58:19 +00:00
										 |  |  | 	function display_html_attributes() { | 
					
						
							| 
									
										
										
										
											2010-09-18 16:11:43 +00:00
										 |  |  | 		$return = new htmlTable(); | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 		// mail routing address
 | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 		$this->addSimpleInputTextField($return, 'mailRoutingAddress', _('Routing address')); | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 		// mail server
 | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 		$this->addSimpleInputTextField($return, 'mailHost', _('Mail server')); | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 		// list current local addresses
 | 
					
						
							| 
									
										
										
										
											2006-05-13 08:55:31 +00:00
										 |  |  | 		$localAdresses = array(); | 
					
						
							|  |  |  | 		if (isset($this->attributes['mailLocalAddress'])) $localAdresses = $this->attributes['mailLocalAddress']; | 
					
						
							|  |  |  | 		for ($i = 0; $i < sizeof($localAdresses); $i++) { | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 			if ($i == 0) { | 
					
						
							|  |  |  | 				$return->addElement(new htmlOutputText(_('Local address'))); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							|  |  |  | 				$return->addElement(new htmlOutputText('')); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-09-18 16:11:43 +00:00
										 |  |  | 			$return->addElement(new htmlInputField('localAdr' . $i, $localAdresses[$i])); | 
					
						
							|  |  |  | 			$return->addElement(new htmlButton('delAdr' . $i, 'del.png', true)); | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 			if ($i == 0) { | 
					
						
							|  |  |  | 				$return->addElement(new htmlHelpLink('localAdr')); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			$return->addNewLine(); | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		// input box for new local addresses
 | 
					
						
							| 
									
										
										
										
											2010-09-18 16:11:43 +00:00
										 |  |  | 		$return->addElement(new htmlOutputText(_('New local address'))); | 
					
						
							|  |  |  | 		$return->addElement(new htmlInputField('localAdr', '')); | 
					
						
							|  |  |  | 		$return->addElement(new htmlButton('addAdr', 'add.png', true)); | 
					
						
							|  |  |  | 		$return->addElement(new htmlHelpLink('localAdr')); | 
					
						
							|  |  |  | 		$return->addElement(new htmlHiddenInput('adr_number', sizeof($localAdresses))); | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 		return $return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2005-09-07 12:58:34 +00:00
										 |  |  | 	* Processes user input of the primary module page. | 
					
						
							|  |  |  | 	* It checks if all input values are correct and updates the associated LDAP attributes. | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 	* | 
					
						
							| 
									
										
										
										
											2005-09-07 12:58:34 +00:00
										 |  |  | 	* @return array list of info/error messages | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											2006-08-13 12:58:19 +00:00
										 |  |  | 	function process_attributes() { | 
					
						
							| 
									
										
										
										
											2006-05-16 15:38:55 +00:00
										 |  |  | 		$errors = array(); | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 		$this->attributes['mailRoutingAddress'] = array(); | 
					
						
							|  |  |  | 		$this->attributes['mailLocalAddress'] = array(); | 
					
						
							|  |  |  | 		$this->attributes['mailHost'] = array(); | 
					
						
							|  |  |  | 		// check routing address
 | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 		if (isset($_POST['mailRoutingAddress']) && ($_POST['mailRoutingAddress'] != "")) { | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 			// check if address has correct format
 | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 			if (get_preg($_POST['mailRoutingAddress'], 'email')) { | 
					
						
							|  |  |  | 				$this->attributes['mailRoutingAddress'][0] = $_POST['mailRoutingAddress']; | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 					$message = $this->messages['mailRoutingAddress'][0]; | 
					
						
							|  |  |  | 					$message[] = $_POST['mailRoutingAddress']; | 
					
						
							| 
									
										
										
										
											2006-08-16 17:42:35 +00:00
										 |  |  | 					$errors[] = $message; | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		// check mail server
 | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 		if (isset($_POST['mailHost']) && ($_POST['mailHost'] != "")) { | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 			// check if address has correct format
 | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 			if (get_preg($_POST['mailHost'], 'DNSname')) { | 
					
						
							|  |  |  | 				$this->attributes['mailHost'][0] = $_POST['mailHost']; | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							| 
									
										
										
										
											2013-10-22 17:41:24 +00:00
										 |  |  | 					$message = $this->messages['mailHost'][0]; | 
					
						
							|  |  |  | 					$message[] = $_POST['mailHost']; | 
					
						
							| 
									
										
										
										
											2006-08-16 17:42:35 +00:00
										 |  |  | 					$errors[] = $message; | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		// check old local addresses
 | 
					
						
							| 
									
										
										
										
											2006-08-13 12:58:19 +00:00
										 |  |  | 		if (isset($_POST['adr_number'])) { | 
					
						
							|  |  |  | 			for ($i = 0; $i < $_POST['adr_number']; $i++) { | 
					
						
							|  |  |  | 				if (isset($_POST['delAdr' . $i])) continue; | 
					
						
							|  |  |  | 				if (isset($_POST['localAdr' . $i]) && ($_POST['localAdr' . $i] != "")) { | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 					// check if address has correct format
 | 
					
						
							| 
									
										
										
										
											2006-08-13 12:58:19 +00:00
										 |  |  | 					if (!get_preg($_POST['localAdr' . $i], 'mailLocalAddress')) { | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 						$message = $this->messages['localAdr'][0]; | 
					
						
							| 
									
										
										
										
											2006-08-13 12:58:19 +00:00
										 |  |  | 						$message[] = $_POST['localAdr' . $i]; | 
					
						
							| 
									
										
										
										
											2006-08-16 17:42:35 +00:00
										 |  |  | 						$errors[] = $message; | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2006-08-13 12:58:19 +00:00
										 |  |  | 					$this->attributes['mailLocalAddress'][] = $_POST['localAdr' . $i]; | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		// check new local address
 | 
					
						
							| 
									
										
										
										
											2006-08-13 12:58:19 +00:00
										 |  |  | 		if (isset($_POST['localAdr']) && ($_POST['localAdr'] != "")) { | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 			// check if address has correct format
 | 
					
						
							| 
									
										
										
										
											2006-08-13 12:58:19 +00:00
										 |  |  | 			if (get_preg($_POST['localAdr'], 'mailLocalAddress')) { | 
					
						
							| 
									
										
										
										
											2006-07-17 17:45:53 +00:00
										 |  |  | 				// check if new address is not already in database
 | 
					
						
							| 
									
										
										
										
											2010-08-05 20:42:39 +00:00
										 |  |  | 				$data = searchLDAPByAttribute('mailLocalAddress', $_POST['localAdr'], 'inetLocalMailRecipient', array('dn'), array('user')); | 
					
						
							|  |  |  | 				if (sizeof($data) > 0) { | 
					
						
							|  |  |  | 					$errors[] = array('WARN', _('This mail address is already in use:') . " " . $_POST['localAdr'], $data[0]['dn']); | 
					
						
							| 
									
										
										
										
											2006-07-17 17:45:53 +00:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2006-08-13 12:58:19 +00:00
										 |  |  | 				$this->attributes['mailLocalAddress'][] = $_POST['localAdr']; | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							|  |  |  | 					$message = $this->messages['localAdr'][0]; | 
					
						
							| 
									
										
										
										
											2006-08-13 12:58:19 +00:00
										 |  |  | 					$message[] = $_POST['localAdr']; | 
					
						
							| 
									
										
										
										
											2006-08-16 17:42:35 +00:00
										 |  |  | 					$errors[] = $message; | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		$this->attributes['mailLocalAddress'] = array_unique($this->attributes['mailLocalAddress']); | 
					
						
							| 
									
										
										
										
											2006-05-16 15:38:55 +00:00
										 |  |  | 		return $errors; | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	* In this function the LDAP account is built up. | 
					
						
							|  |  |  | 	* | 
					
						
							|  |  |  | 	* @param array $rawAccounts list of hash arrays (name => value) from user input | 
					
						
							|  |  |  | 	* @param array $ids list of IDs for column position (e.g. "posixAccount_uid" => 5) | 
					
						
							| 
									
										
										
										
											2012-07-15 12:05:47 +00:00
										 |  |  | 	* @param array $partialAccounts list of hash arrays (name => value) which are later added to LDAP | 
					
						
							| 
									
										
										
										
											2010-02-15 20:21:44 +00:00
										 |  |  | 	* @param array $selectedModules list of selected account modules | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 	* @return array list of error messages if any | 
					
						
							|  |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											2010-02-15 20:21:44 +00:00
										 |  |  | 	function build_uploadAccounts($rawAccounts, $ids, &$partialAccounts, $selectedModules) { | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 		$messages = array(); | 
					
						
							|  |  |  | 		for ($i = 0; $i < sizeof($rawAccounts); $i++) { | 
					
						
							|  |  |  | 			// add object class
 | 
					
						
							|  |  |  | 			if (!in_array("inetLocalMailRecipient", $partialAccounts[$i]['objectClass'])) $partialAccounts[$i]['objectClass'][] = "inetLocalMailRecipient"; | 
					
						
							|  |  |  | 			// add local addresses
 | 
					
						
							| 
									
										
										
										
											2015-08-15 18:11:54 +00:00
										 |  |  | 			$this->mapSimpleUploadField($rawAccounts, $ids, $partialAccounts, $i, 'inetLocalMailRecipient_localAdr', 'mailLocalAddress', 'mailLocalAddress', $this->messages['localAdr'][1], $messages, '/,[ ]*/'); | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 			// add routing address
 | 
					
						
							| 
									
										
										
										
											2014-04-13 11:37:32 +00:00
										 |  |  | 			$this->mapSimpleUploadField($rawAccounts, $ids, $partialAccounts, $i, 'inetLocalMailRecipient_routingAdr', 'mailRoutingAddress', | 
					
						
							|  |  |  | 				'email', $this->messages['mailRoutingAddress'][1], $messages); | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 			// add mail server
 | 
					
						
							| 
									
										
										
										
											2014-04-13 11:37:32 +00:00
										 |  |  | 			$this->mapSimpleUploadField($rawAccounts, $ids, $partialAccounts, $i, 'inetLocalMailRecipient_server', 'mailHost', | 
					
						
							|  |  |  | 				'DNSname', $this->messages['mailHost'][1], $messages); | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		return $messages; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2015-01-07 17:16:35 +00:00
										 |  |  | 	 * Returns a list of possible PDF entries for this account. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @param array $pdfKeys list of PDF keys that are included in document | 
					
						
							|  |  |  | 	 * @return list of PDF entries (array(<PDF key> => <PDF lines>)) | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	function get_pdfEntries($pdfKeys) { | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 		$return = array(); | 
					
						
							| 
									
										
										
										
											2013-05-05 18:37:04 +00:00
										 |  |  | 		$this->addSimplePDFField($return, 'routingAdr', _('Routing address'), 'mailRoutingAddress'); | 
					
						
							|  |  |  | 		$this->addSimplePDFField($return, 'localAdr', _('Local address list'), 'mailLocalAddress'); | 
					
						
							|  |  |  | 		$this->addSimplePDFField($return, 'host', _('Mail server'), 'mailHost'); | 
					
						
							| 
									
										
										
										
											2004-12-29 08:50:04 +00:00
										 |  |  | 		return $return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ?>
 |