Ignore:
Timestamp:
Nov 5, 2013, 8:23:29 PM (11 years ago)
Author:
mistic100
Message:

feature 2965: apply new template on pwg_mail()
TODO : review other mail functions, configuration GUI

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/config_default.inc.php

    r25338 r25344  
    230230$conf['available_permission_levels'] = array(0,1,2,4,8);
    231231
    232 // mail_options: only set it true if you have a send mail warning with
    233 // "options" parameter missing on mail() function execution.
    234 $conf['mail_options'] = false;
     232// check_upgrade_feed: check if there are database upgrade required. Set to
     233// true, a message will strongly encourage you to upgrade your database if
     234// needed.
     235//
     236// This configuration parameter is set to true in BSF branch and to false
     237// elsewhere.
     238$conf['check_upgrade_feed'] = true;
     239
     240// rate_items: available rates for a picture
     241$conf['rate_items'] = array(0,1,2,3,4,5);
     242
     243// Define default method to use ('http' or 'html' in order to do redirect)
     244$conf['default_redirect_method'] = 'http';
     245
     246// Define using double password type in admin's users management panel
     247$conf['double_password_type_in_admin'] = false;
     248
     249// Define if logins must be case sentitive or not at users registration. ie :
     250// If set true, the login "user" will equal "User" or "USER" or "user",
     251// etc. ... And it will be impossible to use such login variation to create a
     252// new user account.
     253$conf['insensitive_case_logon'] = false;
     254
     255// how should we check for unicity when adding a photo. Can be 'md5sum' or
     256// 'filename'
     257$conf['uniqueness_mode'] = 'md5sum';
     258
     259// Library used for image resizing. Value could be 'auto', 'imagick',
     260// 'ext_imagick' or 'gd'. If value is 'auto', library will be choosen in this
     261// order. If choosen library is not available, another one will be picked up.
     262$conf['graphics_library'] = 'auto';
     263
     264// If library used is external installation of ImageMagick ('ext_imagick'),
     265// you can define imagemagick directory.
     266$conf['ext_imagick_dir'] = '';
     267
     268// how many user comments to display by default on comments.php. Use 'all'
     269// to display all user comments without pagination. Default available values
     270// are array(5,10,20,50,'all') but you can set any other numeric value.
     271$conf['comments_page_nb_comments'] = 10;
     272
     273// +-----------------------------------------------------------------------+
     274// |                                 email                                 |
     275// +-----------------------------------------------------------------------+
    235276
    236277// send_bcc_mail_webmaster: send bcc mail to webmaster. Set true for debug
     
    238279$conf['send_bcc_mail_webmaster'] = false;
    239280
    240 // default_email_format:
    241 //  Define the default email format use to send email
    242 //  Value could be text/plain  or text/html
    243 $conf['default_email_format'] = 'text/html';
    244 
    245 // alternative_email_format:
    246 //  Define the alternative email format use to send email
    247 //  Value could be text/plain  or text/html
    248 $conf['alternative_email_format'] = 'text/plain';
    249 
    250 // define the name of sender mail:
    251 // If value is empty, gallery title is used
     281// define the name of sender mail: if value is empty, gallery title is used
    252282$conf['mail_sender_name'] = '';
    253283
    254 // smtp configuration
    255 // (work if fsockopen function is allowed for smtp port)
     284// define the email of sender mail: if valie is empty, webmaster email is used
     285$conf['mail_sender_email'] = '';
     286
     287// set true to allow text/html emails
     288$conf['allow_html_email'] = true;
     289
     290// 'clear' or 'dark'
     291$conf['mail_theme'] = 'clear';
     292
     293// smtp configuration (work if fsockopen function is allowed for smtp port)
    256294// smtp_host: smtp server host
    257295//  if null, regular mail function is used
     
    265303// 'ssl' or 'tls'
    266304$conf['smtp_secure'] = null;
    267 
    268 // check_upgrade_feed: check if there are database upgrade required. Set to
    269 // true, a message will strongly encourage you to upgrade your database if
    270 // needed.
    271 //
    272 // This configuration parameter is set to true in BSF branch and to false
    273 // elsewhere.
    274 $conf['check_upgrade_feed'] = true;
    275 
    276 // rate_items: available rates for a picture
    277 $conf['rate_items'] = array(0,1,2,3,4,5);
    278 
    279 // Define default method to use ('http' or 'html' in order to do redirect)
    280 $conf['default_redirect_method'] = 'http';
    281 
    282 // Define using double password type in admin's users management panel
    283 $conf['double_password_type_in_admin'] = false;
    284 
    285 // Define if logins must be case sentitive or not at users registration. ie :
    286 // If set true, the login "user" will equal "User" or "USER" or "user",
    287 // etc. ... And it will be impossible to use such login variation to create a
    288 // new user account.
    289 $conf['insensitive_case_logon'] = false;
    290 
    291 // how should we check for unicity when adding a photo. Can be 'md5sum' or
    292 // 'filename'
    293 $conf['uniqueness_mode'] = 'md5sum';
    294 
    295 // Library used for image resizing. Value could be 'auto', 'imagick',
    296 // 'ext_imagick' or 'gd'. If value is 'auto', library will be choosen in this
    297 // order. If choosen library is not available, another one will be picked up.
    298 $conf['graphics_library'] = 'auto';
    299 
    300 // If library used is external installation of ImageMagick ('ext_imagick'),
    301 // you can define imagemagick directory.
    302 $conf['ext_imagick_dir'] = '';
    303 
    304 // how many user comments to display by default on comments.php. Use 'all'
    305 // to display all user comments without pagination. Default available values
    306 // are array(5,10,20,50,'all') but you can set any other numeric value.
    307 $conf['comments_page_nb_comments'] = 10;
    308305
    309306// +-----------------------------------------------------------------------+
Note: See TracChangeset for help on using the changeset viewer.