]> git.mxchange.org Git - friendica.git/blob - mod/settings.php
e42760358cd8ac76c8d3e16f8fb8f272fcc59a18
[friendica.git] / mod / settings.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 use Friendica\App;
23 use Friendica\BaseModule;
24 use Friendica\Content\Feature;
25 use Friendica\Content\Nav;
26 use Friendica\Core\ACL;
27 use Friendica\Core\Hook;
28 use Friendica\Core\Logger;
29 use Friendica\Core\Renderer;
30 use Friendica\Core\Worker;
31 use Friendica\Database\DBA;
32 use Friendica\DI;
33 use Friendica\Model\Group;
34 use Friendica\Model\Notification;
35 use Friendica\Model\Profile;
36 use Friendica\Model\User;
37 use Friendica\Module\BaseSettings;
38 use Friendica\Module\Security\Login;
39 use Friendica\Protocol\Email;
40 use Friendica\Util\Temporal;
41 use Friendica\Worker\Delivery;
42
43 function settings_init(App $a)
44 {
45         if (!local_user()) {
46                 notice(DI::l10n()->t('Permission denied.'));
47                 return;
48         }
49
50         BaseSettings::content();
51 }
52
53 function settings_post(App $a)
54 {
55         if (!$a->isLoggedIn()) {
56                 notice(DI::l10n()->t('Permission denied.'));
57                 return;
58         }
59
60         if (!empty($_SESSION['submanage'])) {
61                 return;
62         }
63
64         if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] == 'addon')) {
65                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/addon', 'settings_addon');
66
67                 Hook::callAll('addon_settings_post', $_POST);
68                 return;
69         }
70
71         $user = User::getById($a->getLoggedInUserId());
72
73         if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] == 'connectors')) {
74                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/connectors', 'settings_connectors');
75
76                 if (!empty($_POST['general-submit'])) {
77                         DI::pConfig()->set(local_user(), 'system', 'accept_only_sharer', intval($_POST['accept_only_sharer']));
78                         DI::pConfig()->set(local_user(), 'system', 'disable_cw', !intval($_POST['enable_cw']));
79                         DI::pConfig()->set(local_user(), 'system', 'no_intelligent_shortening', !intval($_POST['enable_smart_shortening']));
80                         DI::pConfig()->set(local_user(), 'system', 'simple_shortening', intval($_POST['simple_shortening']));
81                         DI::pConfig()->set(local_user(), 'system', 'attach_link_title', intval($_POST['attach_link_title']));
82                         DI::pConfig()->set(local_user(), 'ostatus', 'legacy_contact', $_POST['legacy_contact']);
83                 } elseif (!empty($_POST['imap-submit'])) {
84                         $mail_server       =                 $_POST['mail_server']       ?? '';
85                         $mail_port         =                 $_POST['mail_port']         ?? '';
86                         $mail_ssl          = strtolower(trim($_POST['mail_ssl']          ?? ''));
87                         $mail_user         =                 $_POST['mail_user']         ?? '';
88                         $mail_pass         =            trim($_POST['mail_pass']         ?? '');
89                         $mail_action       =            trim($_POST['mail_action']       ?? '');
90                         $mail_movetofolder =            trim($_POST['mail_movetofolder'] ?? '');
91                         $mail_replyto      =                 $_POST['mail_replyto']      ?? '';
92                         $mail_pubmail      =                 $_POST['mail_pubmail']      ?? '';
93
94                         if (function_exists('imap_open') && !DI::config()->get('system', 'imap_disabled')) {
95                                 if (!DBA::exists('mailacct', ['uid' => local_user()])) {
96                                         DBA::insert('mailacct', ['uid' => local_user()]);
97                                 }
98                                 if (strlen($mail_pass)) {
99                                         $pass = '';
100                                         openssl_public_encrypt($mail_pass, $pass, $user['pubkey']);
101                                         DBA::update('mailacct', ['pass' => bin2hex($pass)], ['uid' => local_user()]);
102                                 }
103
104                                 $r = DBA::update('mailacct', [
105                                         'server'       => $mail_server,
106                                         'port'         => $mail_port,
107                                         'ssltype'      => $mail_ssl,
108                                         'user'         => $mail_user,
109                                         `action`       => $mail_action,
110                                         'movetofolder' => $mail_movetofolder,
111                                         'mailbox'      => 'INBOX',
112                                         'reply_to'     => $mail_replyto,
113                                         'pubmail'      => $mail_pubmail
114                                 ], ['uid' => local_user()]);
115
116                                 Logger::notice('updating mailaccount', ['response' => $r]);
117                                 $mailacct = DBA::selectFirst('mailacct', [], ['uid' => local_user()]);
118                                 if (DBA::isResult($mailacct)) {
119                                         $mb = Email::constructMailboxName($mailacct);
120
121                                         if (strlen($mailacct['server'])) {
122                                                 $dcrpass = '';
123                                                 openssl_private_decrypt(hex2bin($mailacct['pass']), $dcrpass, $user['prvkey']);
124                                                 $mbox = Email::connect($mb, $mail_user, $dcrpass);
125                                                 unset($dcrpass);
126                                                 if (!$mbox) {
127                                                         notice(DI::l10n()->t('Failed to connect with email account using the settings provided.'));
128                                                 }
129                                         }
130                                 }
131                         }
132                 }
133
134                 Hook::callAll('connector_settings_post', $_POST);
135                 return;
136         }
137
138         if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] === 'features')) {
139                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/features', 'settings_features');
140                 foreach ($_POST as $k => $v) {
141                         if (strpos($k, 'feature_') === 0) {
142                                 DI::pConfig()->set(local_user(), 'feature', substr($k, 8), ((intval($v)) ? 1 : 0));
143                         }
144                 }
145                 return;
146         }
147
148         BaseModule::checkFormSecurityTokenRedirectOnError('/settings', 'settings');
149
150         // Import Contacts from CSV file
151         if (!empty($_POST['importcontact-submit'])) {
152                 if (isset($_FILES['importcontact-filename'])) {
153                         // was there an error
154                         if ($_FILES['importcontact-filename']['error'] > 0) {
155                                 Logger::notice('Contact CSV file upload error', ['error' => $_FILES['importcontact-filename']['error']]);
156                                 notice(DI::l10n()->t('Contact CSV file upload error'));
157                         } else {
158                                 $csvArray = array_map('str_getcsv', file($_FILES['importcontact-filename']['tmp_name']));
159                                 Logger::notice('Import started', ['lines' => count($csvArray)]);
160                                 // import contacts
161                                 foreach ($csvArray as $csvRow) {
162                                         // The 1st row may, or may not contain the headers of the table
163                                         // We expect the 1st field of the row to contain either the URL
164                                         // or the handle of the account, therefore we check for either
165                                         // "http" or "@" to be present in the string.
166                                         // All other fields from the row will be ignored
167                                         if ((strpos($csvRow[0],'@') !== false) || in_array(parse_url($csvRow[0], PHP_URL_SCHEME), ['http', 'https'])) {
168                                                 Worker::add(PRIORITY_LOW, 'AddContact', $_SESSION['uid'], $csvRow[0]);
169                                         } else {
170                                                 Logger::notice('Invalid account', ['url' => $csvRow[0]]);
171                                         }
172                                 }
173                                 Logger::notice('Import done');
174
175                                 info(DI::l10n()->t('Importing Contacts done'));
176                                 // delete temp file
177                                 unlink($_FILES['importcontact-filename']['tmp_name']);
178                         }
179                 } else {
180                         Logger::notice('Import triggered, but no import file was found.');
181                 }
182
183                 return;
184         }
185
186         if (!empty($_POST['resend_relocate'])) {
187                 Worker::add(PRIORITY_HIGH, 'Notifier', Delivery::RELOCATION, local_user());
188                 info(DI::l10n()->t("Relocate message has been send to your contacts"));
189                 DI::baseUrl()->redirect('settings');
190         }
191
192         Hook::callAll('settings_post', $_POST);
193
194         if (!empty($_POST['password']) || !empty($_POST['confirm'])) {
195                 $newpass = $_POST['password'];
196                 $confirm = $_POST['confirm'];
197
198                 try {
199                         if ($newpass != $confirm) {
200                                 throw new Exception(DI::l10n()->t('Passwords do not match.'));
201                         }
202
203                         //  check if the old password was supplied correctly before changing it to the new value
204                         User::getIdFromPasswordAuthentication(local_user(), $_POST['opassword']);
205
206                         $result = User::updatePassword(local_user(), $newpass);
207                         if (!DBA::isResult($result)) {
208                                 throw new Exception(DI::l10n()->t('Password update failed. Please try again.'));
209                         }
210
211                         info(DI::l10n()->t('Password changed.'));
212                 } catch (Exception $e) {
213                         notice($e->getMessage());
214                         notice(DI::l10n()->t('Password unchanged.'));
215                 }
216         }
217
218         $username         = (!empty($_POST['username'])        ? trim($_POST['username'])          : '');
219         $email            = (!empty($_POST['email'])           ? trim($_POST['email'])             : '');
220         $timezone         = (!empty($_POST['timezone'])        ? trim($_POST['timezone'])          : '');
221         $language         = (!empty($_POST['language'])        ? trim($_POST['language'])          : '');
222
223         $defloc           = (!empty($_POST['defloc'])          ? trim($_POST['defloc'])            : '');
224         $maxreq           = (!empty($_POST['maxreq'])          ? intval($_POST['maxreq'])          : 0);
225         $expire           = (!empty($_POST['expire'])          ? intval($_POST['expire'])          : 0);
226         $def_gid          = (!empty($_POST['group-selection']) ? intval($_POST['group-selection']) : 0);
227
228
229         $expire_items     = (!empty($_POST['expire_items']) ? intval($_POST['expire_items'])     : 0);
230         $expire_notes     = (!empty($_POST['expire_notes']) ? intval($_POST['expire_notes'])     : 0);
231         $expire_starred   = (!empty($_POST['expire_starred']) ? intval($_POST['expire_starred']) : 0);
232         $expire_photos    = (!empty($_POST['expire_photos'])? intval($_POST['expire_photos'])    : 0);
233         $expire_network_only    = (!empty($_POST['expire_network_only'])? intval($_POST['expire_network_only'])  : 0);
234
235         $delete_openid    = ((!empty($_POST['delete_openid']) && (intval($_POST['delete_openid']) == 1)) ? 1: 0);
236
237         $allow_location   = ((!empty($_POST['allow_location']) && (intval($_POST['allow_location']) == 1)) ? 1: 0);
238         $publish          = ((!empty($_POST['profile_in_directory']) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0);
239         $net_publish      = ((!empty($_POST['profile_in_netdirectory']) && (intval($_POST['profile_in_netdirectory']) == 1)) ? 1: 0);
240         $old_visibility   = ((!empty($_POST['visibility']) && (intval($_POST['visibility']) == 1)) ? 1 : 0);
241         $account_type     = ((!empty($_POST['account-type']) && (intval($_POST['account-type']))) ? intval($_POST['account-type']) : 0);
242         $page_flags       = ((!empty($_POST['page-flags']) && (intval($_POST['page-flags']))) ? intval($_POST['page-flags']) : 0);
243         $blockwall        = ((!empty($_POST['blockwall']) && (intval($_POST['blockwall']) == 1)) ? 0: 1); // this setting is inverted!
244         $blocktags        = ((!empty($_POST['blocktags']) && (intval($_POST['blocktags']) == 1)) ? 0: 1); // this setting is inverted!
245         $unkmail          = ((!empty($_POST['unkmail']) && (intval($_POST['unkmail']) == 1)) ? 1: 0);
246         $cntunkmail       = (!empty($_POST['cntunkmail']) ? intval($_POST['cntunkmail']) : 0);
247         $hide_friends     = (($_POST['hide-friends'] == 1) ? 1: 0);
248         $hidewall         = (($_POST['hidewall'] == 1) ? 1: 0);
249         $unlisted         = (($_POST['unlisted'] == 1) ? 1: 0);
250         $accessiblephotos = (($_POST['accessible-photos'] == 1) ? 1: 0);
251
252         $notify_like      = (($_POST['notify_like'] == 1) ? 1 : 0);
253         $notify_announce  = (($_POST['notify_announce'] == 1) ? 1 : 0);
254
255         $email_textonly   = (($_POST['email_textonly'] == 1) ? 1 : 0);
256         $detailed_notif   = (($_POST['detailed_notif'] == 1) ? 1 : 0);
257
258         $notify_ignored   = (($_POST['notify_ignored'] == 1) ? 1 : 0);
259
260         $notify = 0;
261
262         if (!empty($_POST['notify1'])) {
263                 $notify += intval($_POST['notify1']);
264         }
265         if (!empty($_POST['notify2'])) {
266                 $notify += intval($_POST['notify2']);
267         }
268         if (!empty($_POST['notify3'])) {
269                 $notify += intval($_POST['notify3']);
270         }
271         if (!empty($_POST['notify4'])) {
272                 $notify += intval($_POST['notify4']);
273         }
274         if (!empty($_POST['notify5'])) {
275                 $notify += intval($_POST['notify5']);
276         }
277         if (!empty($_POST['notify6'])) {
278                 $notify += intval($_POST['notify6']);
279         }
280         if (!empty($_POST['notify7'])) {
281                 $notify += intval($_POST['notify7']);
282         }
283         if (!empty($_POST['notify8'])) {
284                 $notify += intval($_POST['notify8']);
285         }
286
287         // Adjust the page flag if the account type doesn't fit to the page flag.
288         if (($account_type == User::ACCOUNT_TYPE_PERSON) && !in_array($page_flags, [User::PAGE_FLAGS_NORMAL, User::PAGE_FLAGS_SOAPBOX, User::PAGE_FLAGS_FREELOVE])) {
289                 $page_flags = User::PAGE_FLAGS_NORMAL;
290         } elseif (($account_type == User::ACCOUNT_TYPE_ORGANISATION) && !in_array($page_flags, [User::PAGE_FLAGS_SOAPBOX])) {
291                 $page_flags = User::PAGE_FLAGS_SOAPBOX;
292         } elseif (($account_type == User::ACCOUNT_TYPE_NEWS) && !in_array($page_flags, [User::PAGE_FLAGS_SOAPBOX])) {
293                 $page_flags = User::PAGE_FLAGS_SOAPBOX;
294         } elseif (($account_type == User::ACCOUNT_TYPE_COMMUNITY) && !in_array($page_flags, [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP])) {
295                 $page_flags = User::PAGE_FLAGS_COMMUNITY;
296         }
297
298         $err = '';
299
300         if ($username != $user['username']) {
301                 if (strlen($username) > 40) {
302                         $err .= DI::l10n()->t('Please use a shorter name.');
303                 }
304                 if (strlen($username) < 3) {
305                         $err .= DI::l10n()->t('Name too short.');
306                 }
307         }
308
309         if ($email != $user['email']) {
310                 //  check for the correct password
311                 try {
312                         $authenticated = User::getIdFromPasswordAuthentication(intval(local_user()), $_POST['mpassword']);
313                 } catch (Exception $ex) {
314                         $authenticated = false;
315                 }
316
317                 if (!$authenticated) {
318                         $err .= DI::l10n()->t('Wrong Password.');
319                         $email = $user['email'];
320                 }
321                 //  check the email is valid
322                 if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
323                         $err .= DI::l10n()->t('Invalid email.');
324                 }
325                 //  ensure new email is not the admin mail
326                 if (DI::config()->get('config', 'admin_email')) {
327                         $adminlist = explode(",", str_replace(" ", "", strtolower(DI::config()->get('config', 'admin_email'))));
328                         if (in_array(strtolower($email), $adminlist)) {
329                                 $err .= DI::l10n()->t('Cannot change to that email.');
330                                 $email = $user['email'];
331                         }
332                 }
333         }
334
335         if (strlen($err)) {
336                 notice($err);
337                 return;
338         }
339
340         if (($timezone != $user['timezone']) && strlen($timezone)) {
341                 $a->setTimeZone($timezone);
342         }
343
344         $aclFormatter = DI::aclFormatter();
345
346         $str_group_allow   = !empty($_POST['group_allow'])   ? $aclFormatter->toString($_POST['group_allow'])   : '';
347         $str_contact_allow = !empty($_POST['contact_allow']) ? $aclFormatter->toString($_POST['contact_allow']) : '';
348         $str_group_deny    = !empty($_POST['group_deny'])    ? $aclFormatter->toString($_POST['group_deny'])    : '';
349         $str_contact_deny  = !empty($_POST['contact_deny'])  ? $aclFormatter->toString($_POST['contact_deny'])  : '';
350
351         DI::pConfig()->set(local_user(), 'expire', 'items', $expire_items);
352         DI::pConfig()->set(local_user(), 'expire', 'notes', $expire_notes);
353         DI::pConfig()->set(local_user(), 'expire', 'starred', $expire_starred);
354         DI::pConfig()->set(local_user(), 'expire', 'photos', $expire_photos);
355         DI::pConfig()->set(local_user(), 'expire', 'network_only', $expire_network_only);
356
357         DI::pConfig()->set(local_user(), 'system', 'notify_like', $notify_like);
358         DI::pConfig()->set(local_user(), 'system', 'notify_announce', $notify_announce);
359
360         DI::pConfig()->set(local_user(), 'system', 'email_textonly', $email_textonly);
361         DI::pConfig()->set(local_user(), 'system', 'detailed_notif', $detailed_notif);
362         DI::pConfig()->set(local_user(), 'system', 'notify_ignored', $notify_ignored);
363         DI::pConfig()->set(local_user(), 'system', 'unlisted', $unlisted);
364         DI::pConfig()->set(local_user(), 'system', 'accessible-photos', $accessiblephotos);
365
366         if ($page_flags == User::PAGE_FLAGS_PRVGROUP) {
367                 $hidewall = 1;
368                 if (!$str_contact_allow && !$str_group_allow && !$str_contact_deny && !$str_group_deny) {
369                         if ($def_gid) {
370                                 info(DI::l10n()->t('Private forum has no privacy permissions. Using default privacy group.'));
371                                 $str_group_allow = '<' . $def_gid . '>';
372                         } else {
373                                 notice(DI::l10n()->t('Private forum has no privacy permissions and no default privacy group.'));
374                         }
375                 }
376         }
377
378         $fields = ['username' => $username, 'email' => $email, 'timezone' => $timezone,
379                 'allow_cid' => $str_contact_allow, 'allow_gid' => $str_group_allow, 'deny_cid' => $str_contact_deny, 'deny_gid' => $str_group_deny,
380                 'notify-flags' => $notify, 'page-flags' => $page_flags, 'account-type' => $account_type, 'default-location' => $defloc,
381                 'allow_location' => $allow_location, 'maxreq' => $maxreq, 'expire' => $expire, 'def_gid' => $def_gid, 'blockwall' => $blockwall,
382                 'hidewall' => $hidewall, 'blocktags' => $blocktags, 'unkmail' => $unkmail, 'cntunkmail' => $cntunkmail, 'language' => $language];
383
384         if ($delete_openid) {
385                 $fields['openid'] = '';
386                 $fields['openidserver'] = '';
387         }
388
389         $profile_fields = ['publish' => $publish, 'net-publish' => $net_publish, 'hide-friends' => $hide_friends];
390
391         if (!User::update($fields, local_user()) || !Profile::update($profile_fields, local_user())) {
392                 notice(DI::l10n()->t('Settings were not updated.'));
393         }
394
395         // clear session language
396         unset($_SESSION['language']);
397
398         DI::baseUrl()->redirect('settings');
399         return; // NOTREACHED
400 }
401
402
403 function settings_content(App $a)
404 {
405         $o = '';
406         Nav::setSelected('settings');
407
408         if (!local_user()) {
409                 //notice(DI::l10n()->t('Permission denied.'));
410                 return Login::form();
411         }
412
413         if (!empty($_SESSION['submanage'])) {
414                 notice(DI::l10n()->t('Permission denied.'));
415                 return;
416         }
417
418         if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] === 'oauth')) {
419                 if ((DI::args()->getArgc() > 3) && (DI::args()->getArgv()[2] === 'delete')) {
420                         BaseModule::checkFormSecurityTokenRedirectOnError('/settings/oauth', 'settings_oauth', 't');
421
422                         DBA::delete('application-token', ['application-id' => DI::args()->getArgv()[3], 'uid' => local_user()]);
423                         DI::baseUrl()->redirect('settings/oauth/', true);
424                         return;
425                 }
426
427                 $applications = DBA::selectToArray('application-view', ['id', 'uid', 'name', 'website', 'scopes', 'created_at'], ['uid' => local_user()]);
428
429                 $tpl = Renderer::getMarkupTemplate('settings/oauth.tpl');
430                 $o .= Renderer::replaceMacros($tpl, [
431                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_oauth"),
432                         '$baseurl'             => DI::baseUrl()->get(true),
433                         '$title'               => DI::l10n()->t('Connected Apps'),
434                         '$name'                => DI::l10n()->t('Name'),
435                         '$website'             => DI::l10n()->t('Home Page'),
436                         '$created_at'          => DI::l10n()->t('Created'),
437                         '$delete'              => DI::l10n()->t('Remove authorization'),
438                         '$apps'                => $applications,
439                 ]);
440                 return $o;
441         }
442
443         if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] === 'addon')) {
444                 $addon_settings_forms = [];
445
446                 foreach (DI::dba()->selectToArray('hook', ['file', 'function'], ['hook' => 'addon_settings']) as $hook) {
447                         $data = '';
448                         Hook::callSingle(DI::app(), 'addon_settings', [$hook['file'], $hook['function']], $data);
449                         $addon_settings_forms[] = $data;
450                 }
451
452                 $tpl = Renderer::getMarkupTemplate('settings/addons.tpl');
453                 $o .= Renderer::replaceMacros($tpl, [
454                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_addon"),
455                         '$title'        => DI::l10n()->t('Addon Settings'),
456                         '$no_addons_settings_configured' => DI::l10n()->t('No Addon settings configured'),
457                         '$addon_settings_forms' => $addon_settings_forms,
458                 ]);
459                 return $o;
460         }
461
462         if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] === 'features')) {
463
464                 $arr = [];
465                 $features = Feature::get();
466                 foreach ($features as $fname => $fdata) {
467                         $arr[$fname] = [];
468                         $arr[$fname][0] = $fdata[0];
469                         foreach (array_slice($fdata,1) as $f) {
470                                 $arr[$fname][1][] = ['feature_' . $f[0], $f[1], Feature::isEnabled(local_user(), $f[0]), $f[2]];
471                         }
472                 }
473
474                 $tpl = Renderer::getMarkupTemplate('settings/features.tpl');
475                 $o .= Renderer::replaceMacros($tpl, [
476                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_features"),
477                         '$title'               => DI::l10n()->t('Additional Features'),
478                         '$features'            => $arr,
479                         '$submit'              => DI::l10n()->t('Save Settings'),
480                 ]);
481                 return $o;
482         }
483
484         if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] === 'connectors')) {
485                 $accept_only_sharer        = intval(DI::pConfig()->get(local_user(), 'system', 'accept_only_sharer'));
486                 $enable_cw                 = !intval(DI::pConfig()->get(local_user(), 'system', 'disable_cw'));
487                 $enable_smart_shortening   = !intval(DI::pConfig()->get(local_user(), 'system', 'no_intelligent_shortening'));
488                 $simple_shortening         = intval(DI::pConfig()->get(local_user(), 'system', 'simple_shortening'));
489                 $attach_link_title         = intval(DI::pConfig()->get(local_user(), 'system', 'attach_link_title'));
490                 $legacy_contact            = DI::pConfig()->get(local_user(), 'ostatus', 'legacy_contact');
491
492                 if (!empty($legacy_contact)) {
493                         /// @todo Isn't it supposed to be a $a->internalRedirect() call?
494                         DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . DI::baseUrl().'/ostatus_subscribe?url=' . urlencode($legacy_contact) . '">';
495                 }
496
497                 $settings_connectors = '';
498                 Hook::callAll('connector_settings', $settings_connectors);
499
500                 if ($a->isSiteAdmin()) {
501                         $diasp_enabled = DI::l10n()->t('Built-in support for %s connectivity is %s', DI::l10n()->t('Diaspora (Socialhome, Hubzilla)'), ((DI::config()->get('system', 'diaspora_enabled')) ? DI::l10n()->t('enabled') : DI::l10n()->t('disabled')));
502                         $ostat_enabled = DI::l10n()->t('Built-in support for %s connectivity is %s', DI::l10n()->t('OStatus (GNU Social)'), ((DI::config()->get('system', 'ostatus_disabled')) ? DI::l10n()->t('disabled') : DI::l10n()->t('enabled')));
503                 } else {
504                         $diasp_enabled = "";
505                         $ostat_enabled = "";
506                 }
507
508                 $mail_disabled = ((function_exists('imap_open') && (!DI::config()->get('system', 'imap_disabled'))) ? 0 : 1);
509                 if (!$mail_disabled) {
510                         $mailacct = DBA::selectFirst('mailacct', [], ['uid' => local_user()]);
511                 } else {
512                         $mailacct = null;
513                 }
514
515                 $mail_server       = $mailacct['server'] ?? '';
516                 $mail_port         = (!empty($mailacct['port']) && is_numeric($mailacct['port'])) ? (int)$mailacct['port'] : '';
517                 $mail_ssl          = $mailacct['ssltype'] ?? '';
518                 $mail_user         = $mailacct['user'] ?? '';
519                 $mail_replyto      = $mailacct['reply_to'] ?? '';
520                 $mail_pubmail      = $mailacct['pubmail'] ?? 0;
521                 $mail_action       = $mailacct['action'] ?? 0;
522                 $mail_movetofolder = $mailacct['movetofolder'] ?? '';
523                 $mail_chk          = $mailacct['last_check'] ?? DBA::NULL_DATETIME;
524
525
526                 $tpl = Renderer::getMarkupTemplate('settings/connectors.tpl');
527
528                 $mail_disabled_message = ($mail_disabled ? DI::l10n()->t('Email access is disabled on this site.') : '');
529
530                 $ssl_options = ['TLS' => 'TLS', 'SSL' => 'SSL'];
531
532                 if (DI::config()->get('system', 'insecure_imap')) {
533                         $ssl_options['notls'] = DI::l10n()->t('None');
534                 }
535
536                 $o .= Renderer::replaceMacros($tpl, [
537                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_connectors"),
538
539                         '$title'        => DI::l10n()->t('Social Networks'),
540
541                         '$diasp_enabled' => $diasp_enabled,
542                         '$ostat_enabled' => $ostat_enabled,
543
544                         '$general_settings' => DI::l10n()->t('General Social Media Settings'),
545                         '$accept_only_sharer' => ['accept_only_sharer', DI::l10n()->t('Accept only top level posts by contacts you follow'), $accept_only_sharer, DI::l10n()->t('The system does an auto completion of threads when a comment arrives. This has got the side effect that you can receive posts that had been started by a non-follower but had been commented by someone you follow. This setting deactivates this behaviour. When activated, you strictly only will receive posts from people you really do follow.')],
546                         '$enable_cw' => ['enable_cw', DI::l10n()->t('Enable Content Warning'), $enable_cw, DI::l10n()->t('Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.')],
547                         '$enable_smart_shortening' => ['enable_smart_shortening', DI::l10n()->t('Enable intelligent shortening'), $enable_smart_shortening, DI::l10n()->t('Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.')],
548                         '$simple_shortening' => ['simple_shortening', DI::l10n()->t('Enable simple text shortening'), $simple_shortening, DI::l10n()->t('Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.')],
549                         '$attach_link_title' => ['attach_link_title', DI::l10n()->t('Attach the link title'), $attach_link_title, DI::l10n()->t('When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.')],
550                         '$legacy_contact' => ['legacy_contact', DI::l10n()->t('Your legacy ActivityPub/GNU Social account'), $legacy_contact, DI::l10n()->t("If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.")],
551
552                         '$repair_ostatus_url' => DI::baseUrl() . '/repair_ostatus',
553                         '$repair_ostatus_text' => DI::l10n()->t('Repair OStatus subscriptions'),
554
555                         '$settings_connectors' => $settings_connectors,
556
557                         '$h_imap' => DI::l10n()->t('Email/Mailbox Setup'),
558                         '$imap_desc' => DI::l10n()->t("If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox."),
559                         '$imap_lastcheck' => ['imap_lastcheck', DI::l10n()->t('Last successful email check:'), $mail_chk, ''],
560                         '$mail_disabled' => $mail_disabled_message,
561                         '$mail_server'  => ['mail_server',      DI::l10n()->t('IMAP server name:'), $mail_server, ''],
562                         '$mail_port'    => ['mail_port',        DI::l10n()->t('IMAP port:'), $mail_port, ''],
563                         '$mail_ssl'     => ['mail_ssl',         DI::l10n()->t('Security:'), strtoupper($mail_ssl), '', $ssl_options],
564                         '$mail_user'    => ['mail_user',        DI::l10n()->t('Email login name:'), $mail_user, ''],
565                         '$mail_pass'    => ['mail_pass',        DI::l10n()->t('Email password:'), '', ''],
566                         '$mail_replyto' => ['mail_replyto',     DI::l10n()->t('Reply-to address:'), $mail_replyto, 'Optional'],
567                         '$mail_pubmail' => ['mail_pubmail',     DI::l10n()->t('Send public posts to all email contacts:'), $mail_pubmail, ''],
568                         '$mail_action'  => ['mail_action',      DI::l10n()->t('Action after import:'), $mail_action, '', [0 => DI::l10n()->t('None'), 1 => DI::l10n()->t('Delete'), 2 => DI::l10n()->t('Mark as seen'), 3 => DI::l10n()->t('Move to folder')]],
569                         '$mail_movetofolder' => ['mail_movetofolder', DI::l10n()->t('Move to folder:'), $mail_movetofolder, ''],
570                         '$submit' => DI::l10n()->t('Save Settings'),
571                 ]);
572
573                 Hook::callAll('display_settings', $o);
574                 return $o;
575         }
576
577         /*
578          * ACCOUNT SETTINGS
579          */
580
581         $profile = DBA::selectFirst('profile', [], ['uid' => local_user()]);
582         if (!DBA::isResult($profile)) {
583                 notice(DI::l10n()->t('Unable to find your profile. Please contact your admin.'));
584                 return;
585         }
586
587         $user = User::getById($a->getLoggedInUserId());
588
589         $username   = $user['username'];
590         $email      = $user['email'];
591         $nickname   = $a->getLoggedInUserNickname();
592         $timezone   = $user['timezone'];
593         $language   = $user['language'];
594         $notify     = $user['notify-flags'];
595         $defloc     = $user['default-location'];
596         $openid     = $user['openid'];
597         $maxreq     = $user['maxreq'];
598         $expire     =  ((intval($user['expire'])) ? $user['expire'] : '');
599         $unkmail    = $user['unkmail'];
600         $cntunkmail = $user['cntunkmail'];
601
602         $expire_items = DI::pConfig()->get(local_user(), 'expire', 'items', true);
603         $expire_notes = DI::pConfig()->get(local_user(), 'expire', 'notes', true);
604         $expire_starred = DI::pConfig()->get(local_user(), 'expire', 'starred', true);
605         $expire_photos = DI::pConfig()->get(local_user(), 'expire', 'photos', false);
606         $expire_network_only = DI::pConfig()->get(local_user(), 'expire', 'network_only', false);
607
608         if (!strlen($user['timezone'])) {
609                 $timezone = $a->getTimeZone();
610         }
611
612         // Set the account type to "Community" when the page is a community page but the account type doesn't fit
613         // This is only happening on the first visit after the update
614         if (in_array($user['page-flags'], [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP]) &&
615                 ($user['account-type'] != User::ACCOUNT_TYPE_COMMUNITY))
616                 $user['account-type'] = User::ACCOUNT_TYPE_COMMUNITY;
617
618         $pageset_tpl = Renderer::getMarkupTemplate('settings/pagetypes.tpl');
619
620         $pagetype = Renderer::replaceMacros($pageset_tpl, [
621                 '$account_types'        => DI::l10n()->t("Account Types"),
622                 '$user'                 => DI::l10n()->t("Personal Page Subtypes"),
623                 '$community'            => DI::l10n()->t("Community Forum Subtypes"),
624                 '$account_type'         => $user['account-type'],
625                 '$type_person'          => User::ACCOUNT_TYPE_PERSON,
626                 '$type_organisation'    => User::ACCOUNT_TYPE_ORGANISATION,
627                 '$type_news'            => User::ACCOUNT_TYPE_NEWS,
628                 '$type_community'       => User::ACCOUNT_TYPE_COMMUNITY,
629
630                 '$account_person'       => ['account-type', DI::l10n()->t('Personal Page'), User::ACCOUNT_TYPE_PERSON,
631                                                                         DI::l10n()->t('Account for a personal profile.'),
632                                                                         ($user['account-type'] == User::ACCOUNT_TYPE_PERSON)],
633
634                 '$account_organisation' => ['account-type', DI::l10n()->t('Organisation Page'), User::ACCOUNT_TYPE_ORGANISATION,
635                                                                         DI::l10n()->t('Account for an organisation that automatically approves contact requests as "Followers".'),
636                                                                         ($user['account-type'] == User::ACCOUNT_TYPE_ORGANISATION)],
637
638                 '$account_news'         => ['account-type', DI::l10n()->t('News Page'), User::ACCOUNT_TYPE_NEWS,
639                                                                         DI::l10n()->t('Account for a news reflector that automatically approves contact requests as "Followers".'),
640                                                                         ($user['account-type'] == User::ACCOUNT_TYPE_NEWS)],
641
642                 '$account_community'    => ['account-type', DI::l10n()->t('Community Forum'), User::ACCOUNT_TYPE_COMMUNITY,
643                                                                         DI::l10n()->t('Account for community discussions.'),
644                                                                         ($user['account-type'] == User::ACCOUNT_TYPE_COMMUNITY)],
645
646                 '$page_normal'          => ['page-flags', DI::l10n()->t('Normal Account Page'), User::PAGE_FLAGS_NORMAL,
647                                                                         DI::l10n()->t('Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'),
648                                                                         ($user['page-flags'] == User::PAGE_FLAGS_NORMAL)],
649
650                 '$page_soapbox'         => ['page-flags', DI::l10n()->t('Soapbox Page'), User::PAGE_FLAGS_SOAPBOX,
651                                                                         DI::l10n()->t('Account for a public profile that automatically approves contact requests as "Followers".'),
652                                                                         ($user['page-flags'] == User::PAGE_FLAGS_SOAPBOX)],
653
654                 '$page_community'       => ['page-flags', DI::l10n()->t('Public Forum'), User::PAGE_FLAGS_COMMUNITY,
655                                                                         DI::l10n()->t('Automatically approves all contact requests.'),
656                                                                         ($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY)],
657
658                 '$page_freelove'        => ['page-flags', DI::l10n()->t('Automatic Friend Page'), User::PAGE_FLAGS_FREELOVE,
659                                                                         DI::l10n()->t('Account for a popular profile that automatically approves contact requests as "Friends".'),
660                                                                         ($user['page-flags'] == User::PAGE_FLAGS_FREELOVE)],
661
662                 '$page_prvgroup'        => ['page-flags', DI::l10n()->t('Private Forum [Experimental]'), User::PAGE_FLAGS_PRVGROUP,
663                                                                         DI::l10n()->t('Requires manual approval of contact requests.'),
664                                                                         ($user['page-flags'] == User::PAGE_FLAGS_PRVGROUP)],
665
666
667         ]);
668
669         $noid = DI::config()->get('system', 'no_openid');
670
671         if ($noid) {
672                 $openid_field = false;
673         } else {
674                 $openid_field = ['openid_url', DI::l10n()->t('OpenID:'), $openid, DI::l10n()->t("\x28Optional\x29 Allow this OpenID to login to this account."), "", "readonly", "url"];
675         }
676
677         $opt_tpl = Renderer::getMarkupTemplate("field_checkbox.tpl");
678         if (DI::config()->get('system', 'publish_all')) {
679                 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
680         } else {
681                 $profile_in_dir = Renderer::replaceMacros($opt_tpl, [
682                         '$field' => ['profile_in_directory', DI::l10n()->t('Publish your profile in your local site directory?'), $profile['publish'], DI::l10n()->t('Your profile will be published in this node\'s <a href="%s">local directory</a>. Your profile details may be publicly visible depending on the system settings.', DI::baseUrl().'/directory')]
683                 ]);
684         }
685
686         $net_pub_desc = '';
687         if (strlen(DI::config()->get('system', 'directory'))) {
688                 $net_pub_desc = ' ' . DI::l10n()->t('Your profile will also be published in the global friendica directories (e.g. <a href="%s">%s</a>).', DI::config()->get('system', 'directory'), DI::config()->get('system', 'directory'));
689         }
690
691         $tpl_addr = Renderer::getMarkupTemplate('settings/nick_set.tpl');
692
693         $prof_addr = Renderer::replaceMacros($tpl_addr,[
694                 '$desc' => DI::l10n()->t("Your Identity Address is <strong>'%s'</strong> or '%s'.", $nickname . '@' . DI::baseUrl()->getHostname() . DI::baseUrl()->getUrlPath(), DI::baseUrl() . '/profile/' . $nickname),
695                 '$basepath' => DI::baseUrl()->getHostname()
696         ]);
697
698         $stpl = Renderer::getMarkupTemplate('settings/settings.tpl');
699
700         /* Installed langs */
701         $lang_choices = DI::l10n()->getAvailableLanguages();
702
703         /// @TODO Fix indending (or so)
704         $o .= Renderer::replaceMacros($stpl, [
705                 '$ptitle'       => DI::l10n()->t('Account Settings'),
706
707                 '$submit'       => DI::l10n()->t('Save Settings'),
708                 '$baseurl' => DI::baseUrl()->get(true),
709                 '$uid' => local_user(),
710                 '$form_security_token' => BaseModule::getFormSecurityToken("settings"),
711                 '$nickname_block' => $prof_addr,
712
713                 '$h_pass'       => DI::l10n()->t('Password Settings'),
714                 '$password1'=> ['password', DI::l10n()->t('New Password:'), '', DI::l10n()->t('Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).')],
715                 '$password2'=> ['confirm', DI::l10n()->t('Confirm:'), '', DI::l10n()->t('Leave password fields blank unless changing')],
716                 '$password3'=> ['opassword', DI::l10n()->t('Current Password:'), '', DI::l10n()->t('Your current password to confirm the changes')],
717                 '$password4'=> ['mpassword', DI::l10n()->t('Password:'), '', DI::l10n()->t('Your current password to confirm the changes of the email address')],
718                 '$oid_enable' => (!DI::config()->get('system', 'no_openid')),
719                 '$openid'       => $openid_field,
720                 '$delete_openid' => ['delete_openid', DI::l10n()->t('Delete OpenID URL'), false, ''],
721
722                 '$h_basic'      => DI::l10n()->t('Basic Settings'),
723                 '$username' => ['username',  DI::l10n()->t('Full Name:'), $username, ''],
724                 '$email'        => ['email', DI::l10n()->t('Email Address:'), $email, '', '', '', 'email'],
725                 '$timezone' => ['timezone_select' , DI::l10n()->t('Your Timezone:'), Temporal::getTimezoneSelect($timezone), ''],
726                 '$language' => ['language', DI::l10n()->t('Your Language:'), $language, DI::l10n()->t('Set the language we use to show you friendica interface and to send you emails'), $lang_choices],
727                 '$defloc'       => ['defloc', DI::l10n()->t('Default Post Location:'), $defloc, ''],
728                 '$allowloc' => ['allow_location', DI::l10n()->t('Use Browser Location:'), ($user['allow_location'] == 1), ''],
729
730                 '$h_prv'                  => DI::l10n()->t('Security and Privacy Settings'),
731                 '$visibility'         => $profile['net-publish'],
732                 '$maxreq'                 => ['maxreq', DI::l10n()->t('Maximum Friend Requests/Day:'), $maxreq , DI::l10n()->t("\x28to prevent spam abuse\x29")],
733                 '$profile_in_dir'     => $profile_in_dir,
734                 '$profile_in_net_dir' => ['profile_in_netdirectory', DI::l10n()->t('Allow your profile to be searchable globally?'), $profile['net-publish'], DI::l10n()->t("Activate this setting if you want others to easily find and follow you. Your profile will be searchable on remote systems. This setting also determines whether Friendica will inform search engines that your profile should be indexed or not.") . $net_pub_desc],
735                 '$hide_friends'       => ['hide-friends', DI::l10n()->t('Hide your contact/friend list from viewers of your profile?'), $profile['hide-friends'], DI::l10n()->t('A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.')],
736                 '$hide_wall'          => ['hidewall', DI::l10n()->t('Hide your profile details from anonymous viewers?'), $user['hidewall'], DI::l10n()->t('Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies will still be accessible by other means.')],
737                 '$unlisted'           => ['unlisted', DI::l10n()->t('Make public posts unlisted'), DI::pConfig()->get(local_user(), 'system', 'unlisted'), DI::l10n()->t('Your public posts will not appear on the community pages or in search results, nor be sent to relay servers. However they can still appear on public feeds on remote servers.')],
738                 '$accessiblephotos'   => ['accessible-photos', DI::l10n()->t('Make all posted pictures accessible'), DI::pConfig()->get(local_user(), 'system', 'accessible-photos'), DI::l10n()->t("This option makes every posted picture accessible via the direct link. This is a workaround for the problem that most other networks can't handle permissions on pictures. Non public pictures still won't be visible for the public on your photo albums though.")],
739                 '$blockwall'          => ['blockwall', DI::l10n()->t('Allow friends to post to your profile page?'), (intval($user['blockwall']) ? '0' : '1'), DI::l10n()->t('Your contacts may write posts on your profile wall. These posts will be distributed to your contacts')], // array('blockwall', DI::l10n()->t('Allow friends to post to your profile page:'), !$blockwall, ''),
740                 '$blocktags'          => ['blocktags', DI::l10n()->t('Allow friends to tag your posts?'), (intval($user['blocktags']) ? '0' : '1'), DI::l10n()->t('Your contacts can add additional tags to your posts.')], // array('blocktags', DI::l10n()->t('Allow friends to tag your posts:'), !$blocktags, ''),
741                 '$unkmail'            => ['unkmail', DI::l10n()->t('Permit unknown people to send you private mail?'), $unkmail, DI::l10n()->t('Friendica network users may send you private messages even if they are not in your contact list.')],
742                 '$cntunkmail'         => ['cntunkmail', DI::l10n()->t('Maximum private messages per day from unknown people:'), $cntunkmail , DI::l10n()->t("\x28to prevent spam abuse\x29")],
743                 '$group_select'       => Group::displayGroupSelection(local_user(), $user['def_gid']),
744                 '$permissions'        => DI::l10n()->t('Default Post Permissions'),
745                 '$aclselect'          => ACL::getFullSelectorHTML(DI::page(), $a->getLoggedInUserId()),
746
747                 '$expire' => [
748                         'label'        => DI::l10n()->t('Expiration settings'),
749                         'days'         => ['expire',  DI::l10n()->t("Automatically expire posts after this many days:"), $expire, DI::l10n()->t('If empty, posts will not expire. Expired posts will be deleted')],
750                         'items'        => ['expire_items', DI::l10n()->t('Expire posts'), $expire_items, DI::l10n()->t('When activated, posts and comments will be expired.')],
751                         'notes'        => ['expire_notes', DI::l10n()->t('Expire personal notes'), $expire_notes, DI::l10n()->t('When activated, the personal notes on your profile page will be expired.')],
752                         'starred'      => ['expire_starred', DI::l10n()->t('Expire starred posts'), $expire_starred, DI::l10n()->t('Starring posts keeps them from being expired. That behaviour is overwritten by this setting.')],
753                         'photos'       => ['expire_photos', DI::l10n()->t('Expire photos'), $expire_photos, DI::l10n()->t('When activated, photos will be expired.')],
754                         'network_only' => ['expire_network_only', DI::l10n()->t('Only expire posts by others'), $expire_network_only, DI::l10n()->t('When activated, your own posts never expire. Then the settings above are only valid for posts you received.')],
755                 ],
756
757                 '$h_not'        => DI::l10n()->t('Notification Settings'),
758                 '$lbl_not'      => DI::l10n()->t('Send a notification email when:'),
759                 '$notify1'      => ['notify1', DI::l10n()->t('You receive an introduction'), ($notify & Notification\Type::INTRO), Notification\Type::INTRO, ''],
760                 '$notify2'      => ['notify2', DI::l10n()->t('Your introductions are confirmed'), ($notify & Notification\Type::CONFIRM), Notification\Type::CONFIRM, ''],
761                 '$notify3'      => ['notify3', DI::l10n()->t('Someone writes on your profile wall'), ($notify & Notification\Type::WALL), Notification\Type::WALL, ''],
762                 '$notify4'      => ['notify4', DI::l10n()->t('Someone writes a followup comment'), ($notify & Notification\Type::COMMENT), Notification\Type::COMMENT, ''],
763                 '$notify5'      => ['notify5', DI::l10n()->t('You receive a private message'), ($notify & Notification\Type::MAIL), Notification\Type::MAIL, ''],
764                 '$notify6'  => ['notify6', DI::l10n()->t('You receive a friend suggestion'), ($notify & Notification\Type::SUGGEST), Notification\Type::SUGGEST, ''],
765                 '$notify7'  => ['notify7', DI::l10n()->t('You are tagged in a post'), ($notify & Notification\Type::TAG_SELF), Notification\Type::TAG_SELF, ''],
766                 '$notify8'  => ['notify8', DI::l10n()->t('You are poked/prodded/etc. in a post'), ($notify & Notification\Type::POKE), Notification\Type::POKE, ''],
767
768                 '$lbl_notify'      => DI::l10n()->t('Create a desktop notification when:'),
769                 '$notify_like'     => ['notify_like', DI::l10n()->t('Someone liked your content'), DI::pConfig()->get(local_user(), 'system', 'notify_like'), ''],
770                 '$notify_announce' => ['notify_announce', DI::l10n()->t('Someone shared your content'), DI::pConfig()->get(local_user(), 'system', 'notify_announce'), ''],
771
772                 '$desktop_notifications' => ['desktop_notifications', DI::l10n()->t('Activate desktop notifications') , false, DI::l10n()->t('Show desktop popup on new notifications')],
773
774                 '$email_textonly' => ['email_textonly', DI::l10n()->t('Text-only notification emails'),
775                                                                         DI::pConfig()->get(local_user(), 'system', 'email_textonly'),
776                                                                         DI::l10n()->t('Send text only notification emails, without the html part')],
777
778                 '$detailed_notif' => ['detailed_notif', DI::l10n()->t('Show detailled notifications'),
779                                                                         DI::pConfig()->get(local_user(), 'system', 'detailed_notif'),
780                                                                         DI::l10n()->t('Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.')],
781
782                 '$notify_ignored' => ['notify_ignored', DI::l10n()->t('Show notifications of ignored contacts') ,
783                                                                         DI::pConfig()->get(local_user(), 'system', 'notify_ignored', true),
784                                                                         DI::l10n()->t("You don't see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not.")],
785
786                                                                         '$h_advn' => DI::l10n()->t('Advanced Account/Page Type Settings'),
787                 '$h_descadvn' => DI::l10n()->t('Change the behaviour of this account for special situations'),
788                 '$pagetype' => $pagetype,
789
790                 '$importcontact' => DI::l10n()->t('Import Contacts'),
791                 '$importcontact_text' => DI::l10n()->t('Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'),
792                 '$importcontact_button' => DI::l10n()->t('Upload File'),
793                 '$importcontact_maxsize' => DI::config()->get('system', 'max_csv_file_size', 30720),
794                 '$relocate' => DI::l10n()->t('Relocate'),
795                 '$relocate_text' => DI::l10n()->t("If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."),
796                 '$relocate_button' => DI::l10n()->t("Resend relocate message to contacts"),
797
798         ]);
799
800         Hook::callAll('settings_form', $o);
801
802         $o .= '</form>' . "\r\n";
803
804         return $o;
805
806 }