863 lines
24 KiB
PHP
863 lines
24 KiB
PHP
<?php
|
|
/**
|
|
* Class for handling user preferences
|
|
*
|
|
* Copyright 2001 Nicolas Chalanset <nicocha@free.fr>
|
|
* Copyright 2001 Olivier Cahagne <cahagn_o@epita.fr>
|
|
* Copyright 2008-2011 Tim Gerundt <tim@gerundt.de>
|
|
*
|
|
* This file is part of NOCC. NOCC is free software under the terms of the
|
|
* GNU General Public License. You should have received a copy of the license
|
|
* along with NOCC. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* @package NOCC
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License
|
|
* @version SVN: $Id: user_prefs.php 2930 2021-02-03 11:08:55Z oheil $
|
|
*/
|
|
|
|
require_once 'exception.php';
|
|
require_once 'nocc_mailaddress.php';
|
|
|
|
/**
|
|
* Handling user preferences
|
|
*
|
|
* @package NOCC
|
|
* @todo Rename to NOCC_UserPrefs!
|
|
* @todo Hide all preferenes behind getter/setter!
|
|
* @todo Rewrite to avoid global variables!
|
|
*/
|
|
class NOCCUserPrefs {
|
|
// TODO: Hide behind get/setKey()?
|
|
var $key;
|
|
/**
|
|
* Full name
|
|
* @var string
|
|
* @access private
|
|
*/
|
|
private $_fullName;
|
|
/**
|
|
* Email address
|
|
* @var string
|
|
* @access private
|
|
*/
|
|
private $_emailAddress;
|
|
// TODO: Hide behind get/setMessagesPerPage()!
|
|
var $msg_per_page;
|
|
/**
|
|
* Bcc self?
|
|
* @var boolean
|
|
* @access private
|
|
*/
|
|
private $_bccSelf;
|
|
/**
|
|
* Hide addresses?
|
|
* @var boolean
|
|
* @access private
|
|
*/
|
|
private $_hideAddresses;
|
|
/**
|
|
* Show alert?
|
|
* @var boolean
|
|
* @access private
|
|
*/
|
|
private $_showAlert;
|
|
/**
|
|
* Outlook quoting?
|
|
* @var boolean
|
|
* @access private
|
|
*/
|
|
private $_outlookQuoting;
|
|
/**
|
|
* Colored quotes?
|
|
* @var boolean
|
|
* @access private
|
|
*/
|
|
private $_coloredQuotes;
|
|
/**
|
|
* Display structured text?
|
|
* @var boolean
|
|
* @access private
|
|
*/
|
|
private $_displayStructuredText;
|
|
// TODO: Hide behind get/setOpenMessagesInSeperateWindow()!
|
|
var $seperate_msg_win;
|
|
// TODO: Hide behind get/setReplyLeadin()!
|
|
var $reply_leadin;
|
|
/**
|
|
* Wrap messages?
|
|
* @var integer
|
|
* @access private
|
|
* @todo Rename to wrapMessage?
|
|
*/
|
|
private $_wrapMessages;
|
|
/**
|
|
* Signature
|
|
* @var string
|
|
* @access private
|
|
*/
|
|
private $_signature;
|
|
/**
|
|
* Use signature separator?
|
|
* @var boolean
|
|
* @access private
|
|
*/
|
|
private $_useSignatureSeparator;
|
|
/**
|
|
* Send HTML mail?
|
|
* @var boolean
|
|
* @access private
|
|
*/
|
|
private $_sendHtmlMail;
|
|
/**
|
|
* Use graphical smilies?
|
|
* @var boolean
|
|
* @access private
|
|
*/
|
|
private $_useGraphicalSmilies;
|
|
/**
|
|
* Use sent folder?
|
|
* @var boolean
|
|
* @access private
|
|
*/
|
|
private $_useSentFolder;
|
|
/**
|
|
* Sent folder name?
|
|
* @var string
|
|
* @access private
|
|
*/
|
|
private $_sentFolderName;
|
|
/**
|
|
* Use trash folder?
|
|
* @var boolean
|
|
* @access private
|
|
*/
|
|
private $_useTrashFolder;
|
|
/**
|
|
* Trash folder name?
|
|
* @var string
|
|
* @access private
|
|
*/
|
|
private $_trashFolderName;
|
|
/**
|
|
* Inbox folder name?
|
|
* @var string
|
|
* @access private
|
|
*/
|
|
private $_useInboxFolder;
|
|
/**
|
|
* Inbox folder name?
|
|
* @var string
|
|
* @access private
|
|
*/
|
|
private $_inboxFolderName;
|
|
/**
|
|
* Auto-Collect email adresses into contacts
|
|
* @var int
|
|
* @access private
|
|
*/
|
|
private $_collect;
|
|
|
|
// TODO: Hide behind get/setLang()!
|
|
var $lang;
|
|
// TODO: Hide behind get/setTheme()!
|
|
var $theme;
|
|
|
|
// Set when preferences have not been commit
|
|
// TODO: Hide behind get/setIsDirty()!
|
|
var $dirty_flag;
|
|
|
|
/**
|
|
* Initialize the default user profile
|
|
* @param string $key Key
|
|
*/
|
|
function __construct($key) {
|
|
$this->key = preg_replace("/(\\\|\/)/","_",$key);
|
|
$this->_fullName = '';
|
|
$this->_emailAddress = '';
|
|
$this->_bccSelf = false;
|
|
$this->_hideAddresses = false;
|
|
$this->_showAlert = true;
|
|
$this->_outlookQuoting = false;
|
|
$this->_coloredQuotes = true;
|
|
$this->_displayStructuredText = false;
|
|
$this->_wrapMessages = 0;
|
|
$this->_signature = '';
|
|
$this->_useSignatureSeparator = false;
|
|
$this->_sendHtmlMail = false;
|
|
$this->_useGraphicalSmilies = false;
|
|
$this->_useSentFolder = false;
|
|
$this->_sendFolderName = '';
|
|
$this->_useTrashFolder = false;
|
|
$this->_trashFolderName = '';
|
|
$this->_useInboxFolder = true;
|
|
$this->_inboxFolderName = 'INBOX';
|
|
$this->_collect = 0;
|
|
$this->dirty_flag = 1;
|
|
}
|
|
|
|
/**
|
|
* Get full name from user preferences
|
|
* @return string Full name
|
|
*/
|
|
public function getFullName() {
|
|
return $this->_fullName;
|
|
}
|
|
|
|
/**
|
|
* Set full name from user preferences
|
|
* @param string $value Full name
|
|
*/
|
|
public function setFullName($value) {
|
|
$this->_fullName = $this->_convertToString($value);
|
|
}
|
|
|
|
//TODO: Add hasFullName()?
|
|
|
|
/**
|
|
* Get email address from user preferences
|
|
* @return string Email address
|
|
*/
|
|
public function getEmailAddress() {
|
|
return $this->_emailAddress;
|
|
}
|
|
|
|
/**
|
|
* Set email address from user preferences
|
|
* @param string $value Email address
|
|
*/
|
|
public function setEmailAddress($value) {
|
|
$this->_emailAddress = $this->_convertToString($value);
|
|
}
|
|
|
|
//TODO: Add hasEmailAddress()?
|
|
|
|
//TODO: Add getFullEmailAddress()?
|
|
|
|
/**
|
|
* Get mail address from user preferences
|
|
* @return NOCC_MailAddress Mail address
|
|
*/
|
|
public function getMailAddress() {
|
|
return new NOCC_MailAddress($this->_emailAddress, $this->_fullName);
|
|
}
|
|
|
|
/**
|
|
* Get Bcc self sending from user preferences
|
|
* @return boolean Bcc self?
|
|
*/
|
|
public function getBccSelf() {
|
|
return $this->_bccSelf;
|
|
}
|
|
|
|
/**
|
|
* Set Bcc self sending from user preferences
|
|
* @param mixed $value Bcc self?
|
|
*/
|
|
public function setBccSelf($value) {
|
|
$this->_bccSelf = $this->_convertToFalse($value);
|
|
}
|
|
|
|
/**
|
|
* Get address hiding from user preferences
|
|
* @return boolean Hide addresses?
|
|
*/
|
|
public function getHideAddresses() {
|
|
return $this->_hideAddresses;
|
|
}
|
|
|
|
/**
|
|
* Set address hiding from user preferences
|
|
* @param mixed $value Hide addresses?
|
|
*/
|
|
public function setHideAddresses($value) {
|
|
$this->_hideAddresses = $this->_convertToFalse($value);
|
|
}
|
|
|
|
/**
|
|
* Get show alert from user preferences
|
|
* @return boolean show alert?
|
|
*/
|
|
public function getShowAlert() {
|
|
return $this->_showAlert;
|
|
}
|
|
|
|
/**
|
|
* Set show alert from user preferences
|
|
* @param mixed $value show alert?
|
|
*/
|
|
public function setShowAlert($value) {
|
|
$this->_showAlert = $this->_convertToFalse($value);
|
|
}
|
|
|
|
/**
|
|
* Get outlook quoting from user preferences
|
|
* @return boolean Outlook quoting?
|
|
*/
|
|
public function getOutlookQuoting() {
|
|
return $this->_outlookQuoting;
|
|
}
|
|
|
|
/**
|
|
* Set outlook quoting from user preferences
|
|
* @param mixed $value Outlook quoting?
|
|
*/
|
|
public function setOutlookQuoting($value) {
|
|
$this->_outlookQuoting = $this->_convertToFalse($value);
|
|
}
|
|
|
|
/**
|
|
* Get colored quotes from user preferences
|
|
* @return boolean Colored quotes?
|
|
*/
|
|
public function getColoredQuotes() {
|
|
return $this->_coloredQuotes;
|
|
}
|
|
|
|
/**
|
|
* Set colored quotes from user preferences
|
|
* @param mixed $value Colored quotes?
|
|
*/
|
|
public function setColoredQuotes($value) {
|
|
$this->_coloredQuotes = $this->_convertToTrue($value);
|
|
}
|
|
|
|
/**
|
|
* Get structured text displaying from user preferences
|
|
* @return boolean Display structured text?
|
|
*/
|
|
public function getDisplayStructuredText() {
|
|
return $this->_displayStructuredText;
|
|
}
|
|
|
|
/**
|
|
* Set structured text displaying from user preferences
|
|
* @param mixed $value Display structured text?
|
|
*/
|
|
public function setDisplayStructuredText($value) {
|
|
$this->_displayStructuredText = $this->_convertToFalse($value);
|
|
}
|
|
|
|
/**
|
|
* Get message wrapping from user preferences
|
|
* @return integer Wrap messages?
|
|
*/
|
|
public function getWrapMessages() {
|
|
return $this->_wrapMessages;
|
|
}
|
|
|
|
/**
|
|
* Set message wrapping from user preferences
|
|
* @param integer Wrap messages?
|
|
*/
|
|
public function setWrapMessages($value) {
|
|
$this->_wrapMessages = 0;
|
|
if (is_numeric($value)) { //if numeric...
|
|
switch ($value) {
|
|
case 80:
|
|
$this->_wrapMessages = 80;
|
|
break;
|
|
case 72:
|
|
$this->_wrapMessages = 72;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get signature from user preferences
|
|
* @return string Signature
|
|
*/
|
|
public function getSignature() {
|
|
return $this->_signature;
|
|
}
|
|
|
|
/**
|
|
* Set signature from user preferences
|
|
* @param string $value Signature
|
|
*/
|
|
public function setSignature($value) {
|
|
$this->_signature = $this->_convertToString($value);
|
|
}
|
|
|
|
/**
|
|
* Get signature separator using from user preferences
|
|
* @return boolean Use signature separator
|
|
*/
|
|
public function getUseSignatureSeparator() {
|
|
return $this->_useSignatureSeparator;
|
|
}
|
|
|
|
/**
|
|
* Set signature separator using from user preferences
|
|
* @param mixed $value Use signature separator
|
|
*/
|
|
public function setUseSignatureSeparator($value) {
|
|
$this->_useSignatureSeparator = $this->_convertToFalse($value);
|
|
}
|
|
|
|
/**
|
|
* Get HTML mail sending from user preferences
|
|
* @return boolean Display structured text?
|
|
*/
|
|
public function getSendHtmlMail() {
|
|
return $this->_sendHtmlMail;
|
|
}
|
|
|
|
/**
|
|
* Set HTML mail sending from user preferences
|
|
* @param mixed $value Display structured text?
|
|
*/
|
|
public function setSendHtmlMail($value) {
|
|
$this->_sendHtmlMail = $this->_convertToFalse($value);
|
|
}
|
|
|
|
/**
|
|
* Get graphical smilies using from user preferences
|
|
* @return boolean Use graphical smilies?
|
|
*/
|
|
public function getUseGraphicalSmilies() {
|
|
return $this->_useGraphicalSmilies;
|
|
}
|
|
|
|
/**
|
|
* Set graphical smilies using from user preferences
|
|
* @param mixed $value Use graphical smilies?
|
|
*/
|
|
public function setUseGraphicalSmilies($value) {
|
|
$this->_useGraphicalSmilies = $this->_convertToFalse($value);
|
|
}
|
|
|
|
/**
|
|
* Get sent folder using from user preferences
|
|
* @return boolean Use sent folder?
|
|
*/
|
|
public function getUseSentFolder() {
|
|
return $this->_useSentFolder;
|
|
}
|
|
|
|
/**
|
|
* Set sent folder using from user preferences
|
|
* @param mixed $value Use sent folder?
|
|
*/
|
|
public function setUseSentFolder($value) {
|
|
$this->_useSentFolder = $this->_convertToFalse($value);
|
|
}
|
|
|
|
/**
|
|
* Get sent folder name from user preferences
|
|
* @return string Sent folder name
|
|
*/
|
|
public function getSentFolderName() {
|
|
return $this->_sentFolderName;
|
|
}
|
|
|
|
/**
|
|
* Set sent folder name from user preferences
|
|
* @param string $value Sent folder name
|
|
*/
|
|
public function setSentFolderName($value) {
|
|
$this->_sentFolderName = $this->_convertToString($value);
|
|
}
|
|
|
|
/**
|
|
* Get trash folder using from user preferences
|
|
* @return boolean Use trash folder?
|
|
*/
|
|
public function getUseTrashFolder() {
|
|
return $this->_useTrashFolder;
|
|
}
|
|
|
|
/**
|
|
* Set trash folder using from user preferences
|
|
* @param mixed $value Use trash folder?
|
|
*/
|
|
public function setUseTrashFolder($value) {
|
|
$this->_useTrashFolder = $this->_convertToFalse($value);
|
|
}
|
|
|
|
/**
|
|
* Get trash folder name from user preferences
|
|
* @return string Trash folder name
|
|
*/
|
|
public function getTrashFolderName() {
|
|
return $this->_trashFolderName;
|
|
}
|
|
|
|
/**
|
|
* Set trash folder name from user preferences
|
|
* @param string $value Trash folder name
|
|
*/
|
|
public function setTrashFolderName($value) {
|
|
$this->_trashFolderName = $this->_convertToString($value);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
* Get inbox folder using from user preferences
|
|
* @return boolean Use inbox folder?
|
|
*/
|
|
public function getUseInboxFolder() {
|
|
return $this->_useInboxFolder;
|
|
}
|
|
|
|
/**
|
|
* Set inbox folder using from user preferences
|
|
* @param mixed $value Use inbox folder?
|
|
*/
|
|
public function setUseInboxFolder($value) {
|
|
$this->_useInboxFolder = $this->_convertToFalse($value);
|
|
}
|
|
|
|
/**
|
|
* Get inbox folder name from user preferences
|
|
* @return string Inbox folder name
|
|
*/
|
|
public function getInboxFolderName() {
|
|
return $this->_inboxFolderName;
|
|
}
|
|
|
|
/**
|
|
* Set inbox folder name from user preferences
|
|
* @param string $value Inbox folder name
|
|
*/
|
|
public function setInboxFolderName($value) {
|
|
$this->_inboxFolderName = $this->_convertToString($value);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
* Get auto collect from user preferences
|
|
* @param int $value
|
|
*/
|
|
public function getCollect() {
|
|
return $this->_collect;
|
|
}
|
|
|
|
/**
|
|
* Set auto collect from user preferences
|
|
* @param int $value
|
|
*/
|
|
public function setCollect($value) {
|
|
$this->_collect = $value;
|
|
}
|
|
|
|
/**
|
|
* Return the current preferences for the given key. Key is
|
|
* 'login@domain'. If it cannot be found for any reason, it
|
|
* returns a default profile. If it can be found, but not
|
|
* read, it returns an exception.
|
|
*
|
|
* @global object $conf
|
|
* @param string $key Key
|
|
* @param object $ev Exception
|
|
* @return NOCCUserPrefs User profile
|
|
* @static
|
|
* @todo Rewrite to throw exception!
|
|
*/
|
|
public static function read($key, &$ev) {
|
|
global $conf;
|
|
|
|
$key=preg_replace("/(\\\|\/)/","_",$key);
|
|
|
|
$prefs = new NOCCUserPrefs($key);
|
|
|
|
if (empty($conf->prefs_dir)) {
|
|
//$ev = new NoccException("User preferences are disabled");
|
|
$prefs->dirty_flag = 0;
|
|
return $prefs;
|
|
}
|
|
|
|
/* Open the preferences file */
|
|
$filename = $conf->prefs_dir . '/' . $key . '.pref';
|
|
|
|
return NOCCUserPrefs::readFromFile($prefs, $filename, $ev);
|
|
}
|
|
|
|
/**
|
|
* Helper function for NOCCUserPrefs::read()
|
|
* @param NOCCUserPrefs $prefs Default user preferences
|
|
* @param string $filename File path
|
|
* @param object $ev Exception
|
|
* @return NOCCUserPrefs User profile
|
|
* @static
|
|
* @todo Rewrite to throw exception!
|
|
*/
|
|
public static function readFromFile($prefs, $filename, $ev) {
|
|
/* Open the preferences file */
|
|
if (!file_exists($filename)) {
|
|
error_log("NOCC: $filename does not exist");
|
|
return $prefs;
|
|
}
|
|
$file = fopen($filename, 'r');
|
|
if (!$file) {
|
|
$ev = new NoccException("Could not open $filename for reading user preferences");
|
|
return;
|
|
}
|
|
|
|
/* Read in all the preferences */
|
|
while (!feof($file)) {
|
|
$line = trim(fgets($file, 1024));
|
|
$equalsAt = strpos($line, '=');
|
|
if ($equalsAt <= 0) continue;
|
|
|
|
$key = substr($line, 0, $equalsAt);
|
|
$value = substr($line, $equalsAt + 1);
|
|
|
|
switch ($key) {
|
|
case 'full_name':
|
|
$prefs->setFullName($value);
|
|
break;
|
|
case 'email_address':
|
|
$prefs->setEmailAddress($value);
|
|
break;
|
|
case 'msg_per_page':
|
|
$prefs->msg_per_page = $value * 1;
|
|
break;
|
|
case 'cc_self':
|
|
case 'bcc_self':
|
|
$prefs->setBccSelf($value);
|
|
break;
|
|
case 'hide_addresses':
|
|
$prefs->setHideAddresses($value);
|
|
break;
|
|
case 'show_alert':
|
|
$prefs->setShowAlert($value);
|
|
break;
|
|
case 'outlook_quoting':
|
|
$prefs->setOutlookQuoting($value);
|
|
break;
|
|
case 'colored_quotes':
|
|
$prefs->setColoredQuotes($value);
|
|
break;
|
|
case 'display_struct':
|
|
$prefs->setDisplayStructuredText($value);
|
|
break;
|
|
case 'seperate_msg_win':
|
|
$prefs->seperate_msg_win = ($value == 1 || $value == 'on');
|
|
break;
|
|
case 'signature':
|
|
$prefs->setSignature(base64_decode($value));
|
|
break;
|
|
case 'reply_leadin':
|
|
$prefs->reply_leadin = base64_decode($value);
|
|
break;
|
|
case 'wrap_msg':
|
|
$prefs->setWrapMessages($value);
|
|
break;
|
|
case 'sig_sep':
|
|
$prefs->setUseSignatureSeparator($value);
|
|
break;
|
|
case 'html_mail_send':
|
|
$prefs->setSendHtmlMail($value);
|
|
break;
|
|
case 'graphical_smilies':
|
|
$prefs->setUseGraphicalSmilies($value);
|
|
break;
|
|
case 'sent_folder':
|
|
$prefs->setUseSentFolder($value);
|
|
break;
|
|
case 'sent_folder_name':
|
|
$prefs->setSentFolderName($value);
|
|
break;
|
|
case 'trash_folder':
|
|
$prefs->setUseTrashFolder($value);
|
|
break;
|
|
case 'trash_folder_name':
|
|
$prefs->setTrashFolderName($value);
|
|
break;
|
|
case 'inbox_folder':
|
|
$prefs->setUseInboxFolder($value);
|
|
break;
|
|
case 'inbox_folder_name':
|
|
$prefs->setInboxFolderName($value);
|
|
break;
|
|
case 'collect':
|
|
$prefs->setCollect($value);
|
|
break;
|
|
case 'lang':
|
|
$prefs->lang = $value;
|
|
break;
|
|
case 'theme':
|
|
$prefs->theme = $value;
|
|
break;
|
|
}
|
|
}
|
|
fclose($file);
|
|
|
|
$prefs->dirty_flag = 0;
|
|
return $prefs;
|
|
}
|
|
|
|
/**
|
|
* If need be, write settings to file.
|
|
* @global object $conf
|
|
* @global string $html_prefs_file_error
|
|
* @param object $ev Exception
|
|
* @todo Rewrite to throw exception!
|
|
*/
|
|
public function commit(&$ev) {
|
|
global $conf;
|
|
global $html_prefs_file_error;
|
|
|
|
// Check it passes validation
|
|
$this->validate($ev);
|
|
if(NoccException::isException($ev)) return;
|
|
|
|
// Do we need to write?
|
|
if(!$this->dirty_flag) return;
|
|
|
|
// Write prefs to file
|
|
//TODO: Check key value! Not empty?
|
|
$filename = $conf->prefs_dir . '/' . $this->key . '.pref';
|
|
if (file_exists($filename) && !is_writable($filename)) {
|
|
$ev = new NoccException($html_prefs_file_error);
|
|
return;
|
|
}
|
|
if (!is_writable($conf->prefs_dir)) {
|
|
$ev = new NoccException($html_prefs_file_error);
|
|
return;
|
|
}
|
|
$file = fopen($filename, 'w');
|
|
if (!$file){
|
|
$ev = new NoccException($html_prefs_file_error);
|
|
return;
|
|
}
|
|
|
|
fwrite($file, "full_name=".$this->_fullName."\n");
|
|
fwrite($file, "email_address=".$this->_emailAddress."\n");
|
|
fwrite($file, "msg_per_page=".$this->msg_per_page."\n");
|
|
fwrite($file, "bcc_self=".$this->_bccSelf."\n");
|
|
fwrite($file, "hide_addresses=".$this->_hideAddresses."\n");
|
|
fwrite($file, "show_alert=".$this->_showAlert."\n");
|
|
fwrite($file, "outlook_quoting=".$this->_outlookQuoting."\n");
|
|
fwrite($file, "colored_quotes=".$this->_coloredQuotes."\n");
|
|
fwrite($file, "display_struct=".$this->_displayStructuredText."\n");
|
|
fwrite($file, "seperate_msg_win=".$this->seperate_msg_win."\n");
|
|
fwrite($file, "reply_leadin=".base64_encode($this->reply_leadin)."\n");
|
|
fwrite($file, "signature=".base64_encode($this->_signature)."\n");
|
|
fwrite($file, "wrap_msg=".$this->_wrapMessages."\n");
|
|
fwrite($file, "sig_sep=".$this->_useSignatureSeparator."\n");
|
|
fwrite($file, "html_mail_send=".$this->_sendHtmlMail."\n");
|
|
fwrite($file, "graphical_smilies=".$this->_useGraphicalSmilies."\n");
|
|
|
|
fwrite($file, "sent_folder=".$this->_useSentFolder."\n");
|
|
fwrite($file, "sent_folder_name=".str_replace($_SESSION['imap_namespace'], "", $this->_sentFolderName)."\n");
|
|
|
|
fwrite($file, "trash_folder=".$this->_useTrashFolder."\n");
|
|
fwrite($file, "trash_folder_name=".str_replace($_SESSION['imap_namespace'], "", $this->_trashFolderName)."\n");
|
|
|
|
fwrite($file, "inbox_folder=".$this->_useInboxFolder."\n");
|
|
fwrite($file, "inbox_folder_name=".str_replace($_SESSION['imap_namespace'], "", $this->_inboxFolderName)."\n");
|
|
|
|
fwrite($file, "collect=".$this->_collect."\n");
|
|
fwrite($file, "lang=".$this->lang."\n");
|
|
fwrite($file, "theme=".$this->theme."\n");
|
|
fclose($file);
|
|
|
|
$this->dirty_flag = 0;
|
|
}
|
|
|
|
/**
|
|
* Validate preferences
|
|
* @global object $conf
|
|
* @global string $html_invalid_email_address
|
|
* @global string $html_invalid_msg_per_page
|
|
* @global string $html_invalid_wrap_msg
|
|
* @param object $ev Exception
|
|
*/
|
|
public function validate(&$ev) {
|
|
global $conf;
|
|
global $html_invalid_email_address;
|
|
global $html_invalid_msg_per_page;
|
|
global $html_invalid_wrap_msg;
|
|
|
|
$allow_address_change=(
|
|
( isset($conf->domains[$_SESSION['nocc_domainnum']]->allow_address_change) && $conf->domains[$_SESSION['nocc_domainnum']]->allow_address_change )
|
|
|| ( ! isset($conf->domains[$_SESSION['nocc_domainnum']]->allow_address_change) && $conf->allow_address_change )
|
|
);
|
|
if ($allow_address_change) {
|
|
if (strlen($this->_emailAddress)>0 && !NOCC_MailAddress::isValidAddress($this->_emailAddress)) {
|
|
$ev = new NoccException($html_invalid_email_address);
|
|
return;
|
|
}
|
|
}
|
|
else {
|
|
$this->_emailAddress = '';
|
|
}
|
|
|
|
if (isset($this->msg_per_page) && !is_numeric($this->msg_per_page) ) {
|
|
$ev = new NoccException($html_invalid_msg_per_page);
|
|
return;
|
|
}
|
|
|
|
if (isset($this->_wrapMessages) && !preg_match("/^(0|72|80)$/", $this->_wrapMessages)) {
|
|
$ev = new NoccException($html_invalid_wrap_msg);
|
|
return;
|
|
}
|
|
|
|
// Give go-ahead to commit
|
|
$this->dirty_flag = 1;
|
|
}
|
|
|
|
/**
|
|
* Convert value to bool (False by default)
|
|
* @param mixed $value Value
|
|
* @return bool Bool value
|
|
* @access private
|
|
*/
|
|
private function _convertToFalse($value) {
|
|
if ($value === true || $value === 1 || $value === '1' || $value === 'on') {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Convert value to bool (True by default)
|
|
* @param mixed $value Value
|
|
* @return bool Bool value
|
|
* @access private
|
|
*/
|
|
private function _convertToTrue($value) {
|
|
if ($value === false || $value === 0 || $value === '0' || $value === 'off') {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Convert value to string
|
|
* @param mixed $value Value
|
|
* @return string String value
|
|
* @access private
|
|
*/
|
|
private function _convertToString($value) {
|
|
if (is_string($value)) {
|
|
return $value;
|
|
}
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* Format Reply Leadin
|
|
*
|
|
* @param string $string Reply Leadin
|
|
* @param array $content Content
|
|
* @return string Parsed Reply Leadin
|
|
* @static
|
|
*/
|
|
public static function parseLeadin($string, $content) {
|
|
$string = str_replace('_DATE_', $content['date'], $string);
|
|
$string = str_replace('_TIME_', $content['time'], $string);
|
|
$string = str_replace('_FROM_', $content['from'], $string);
|
|
$string = str_replace('_TO_', $content['to'], $string);
|
|
$string = str_replace('_SUBJECT_', $content['subject'], $string);
|
|
return ($string."\n");
|
|
}
|
|
}
|