| Server IP : 104.21.37.246 / Your IP : 172.71.28.145 [ Web Server : Apache System : Linux cpanel01wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.59.el6.x86_64 #1 SMP Thu Dec 6 05:11:00 EST 2018 x86_64 User : cp648411 ( 1354) PHP Version : 7.2.34 Disable Function : NONE Domains : 0 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/2388322/root/proc/2388322/cwd/3rdparty/roundcube/plugins/cpanelvcfimport/ |
Upload File : |
<?php
/**
+-----------------------------------------------------------------------+
| |
| cpanel - scripts/roundcube_vcf_import Copyright 2022 cPanel, L.L.C. |
| All rights reserved. |
| [email protected] https://cpanel.net |
| This code is subject to the cPanel license. |
| Unauthorized copying is prohibited. |
| |
+-----------------------------------------------------------------------+
*/
// full path to the data directory
$config['cpanel_data_dir'] = getenv('HOME'). '/.cpanel/vcards/';
// Place a "touch" file in $config['cpanel_data_dir'], preventing the plugin from
// running again if the file exits.
$config['cpanel_run_once'] = true;
// whether or not to check for duplicate addresses - if used with the
// cpanel_group_name option duplicates will be added to new groups
$config['cpanel_unique'] = false;
// optional new group name for imported contacts - set to false to disable
$config['cpanel_group_name'] = 'Imported Contacts';
// log level 0 to disable, 1 for errors only, 2 for verbose
$config['cpanel_log_level'] = 2;
// file charset - e.g. 'EUC-JP'. Leave empty for ASCII.
$config['cpanel_file_charset'] = '';