public
nobgit
read
NobMail
Based on mailcow: dockerized
Languages
Repository composition by tracked source files.
PHP
49%
JavaScript
35%
HTML
9%
CSS
4%
Shell
2%
Python
1%
Lua
0%
Perl
0%
Ruby
0%
SCSS
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git
Trace
data/web/mobileconfig.php
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
mobileconfig.php
on main
Author
Date
Commit
Line
Code
Michael Kuron
about 9 years ago
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 1
<?php
<?php
andryyy
over 7 years ago
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2
require_once 'inc/prerequisites.inc.php';
require_once 'inc/prerequisites.inc.php';
Michael Kuron
about 9 years ago
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 3
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 4
if (empty($mailcow_hostname)) {
if (empty($mailcow_hostname)) {
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 5
exit();
exit();
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 6
}
}
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 7
if (!isset($_SESSION['mailcow_cc_role']) || $_SESSION['mailcow_cc_role'] != 'user') {
if (!isset($_SESSION['mailcow_cc_role']) || $_SESSION['mailcow_cc_role'] != 'user') {
andryyy
over 6 years ago
61f7761
[Web] Better mobileconfig handling
- Full commit hash
61f776173f00c064f2aa3c3cbdf35c1e32357cbe- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 8
session_destroy();
session_destroy();
same change
61f7761
[Web] Better mobileconfig handling
- Full commit hash
61f776173f00c064f2aa3c3cbdf35c1e32357cbe- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 9
// probably better than appending the whole current http query string
// probably better than appending the whole current http query string
same change
61f7761
[Web] Better mobileconfig handling
- Full commit hash
61f776173f00c064f2aa3c3cbdf35c1e32357cbe- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 10
$append_get = (isset($_GET['only_email'])) ? '&only_email' : '';
$append_get = (isset($_GET['only_email'])) ? '&only_email' : '';
Michael Kuron
over 4 years ago
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 11
$append_get .= (isset($_GET['app_password'])) ? '&app_password' : '';
$append_get .= (isset($_GET['app_password'])) ? '&app_password' : '';
andryyy
over 6 years ago
61f7761
[Web] Better mobileconfig handling
- Full commit hash
61f776173f00c064f2aa3c3cbdf35c1e32357cbe- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 12
header('Location: index.php?mobileconfig' . $append_get);
header('Location: index.php?mobileconfig' . $append_get);
same change
61f7761
[Web] Better mobileconfig handling
- Full commit hash
61f776173f00c064f2aa3c3cbdf35c1e32357cbe- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 13
die();
die();
Michael Kuron
about 9 years ago
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 14
}
}
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 15
André Peters
almost 9 years ago
27c169d
Update mobileconfig.php
- Full commit hash
27c169dbe182ef7d6abd5d2d6fc62551a00e6ce9- Author
- André Peters <[email protected]>
- Date
- almost 9 years ago
- Selected line
- 16
error_reporting(0);
error_reporting(0);
same change
27c169d
Update mobileconfig.php
- Full commit hash
27c169dbe182ef7d6abd5d2d6fc62551a00e6ce9- Author
- André Peters <[email protected]>
- Date
- almost 9 years ago
- Selected line
- 17
Michael Kuron
about 9 years ago
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 18
header('Content-Type: application/x-apple-aspen-config');
header('Content-Type: application/x-apple-aspen-config');
andryyy
over 7 years ago
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 19
header('Content-Disposition: attachment; filename="'.$UI_TEXTS['main_name'].'.mobileconfig"');
header('Content-Disposition: attachment; filename="'.$UI_TEXTS['main_name'].'.mobileconfig"');
Michael Kuron
about 9 years ago
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 20
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 21
$email = $_SESSION['mailcow_cc_username'];
$email = $_SESSION['mailcow_cc_username'];
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 22
$domain = explode('@', $_SESSION['mailcow_cc_username'])[1];
$domain = explode('@', $_SESSION['mailcow_cc_username'])[1];
andryyy
over 7 years ago
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 23
$identifier = implode('.', array_reverse(preg_split( '/(@|\.)/', $email))) . '.appleprofile.'.preg_replace('/[^a-zA-Z0-9]+/', '', $UI_TEXTS['main_name']);
$identifier = implode('.', array_reverse(preg_split( '/(@|\.)/', $email))) . '.appleprofile.'.preg_replace('/[^a-zA-Z0-9]+/', '', $UI_TEXTS['main_name']);
Michael Kuron
about 9 years ago
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 24
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 25
try {
try {
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 26
$stmt = $pdo->prepare("SELECT `name` FROM `mailbox` WHERE `username`= :username");
$stmt = $pdo->prepare("SELECT `name` FROM `mailbox` WHERE `username`= :username");
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 27
$stmt->execute(array(':username' => $email));
$stmt->execute(array(':username' => $email));
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 28
$MailboxData = $stmt->fetch(PDO::FETCH_ASSOC);
$MailboxData = $stmt->fetch(PDO::FETCH_ASSOC);
emericklaw
about 7 years ago
12d46cf
Updated to not convert quotes
- Full commit hash
12d46cf072875a7703681765db3c092f951edd3e- Author
- emericklaw <[email protected]>
- Date
- about 7 years ago
- Selected line
- 29
$displayname = htmlspecialchars(empty($MailboxData['name']) ? $email : $MailboxData['name'], ENT_NOQUOTES);
$displayname = htmlspecialchars(empty($MailboxData['name']) ? $email : $MailboxData['name'], ENT_NOQUOTES);
Michael Kuron
about 9 years ago
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 30
}
}
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 31
catch(PDOException $e) {
catch(PDOException $e) {
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 32
$displayname = $email;
$displayname = $email;
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 33
}
}
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 34
andryyy
over 7 years ago
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 35
if (isset($_GET['only_email'])) {
if (isset($_GET['only_email'])) {
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 36
$onlyEmailAccount = true;
$onlyEmailAccount = true;
Paul Sütterlin
7 months ago
70101d1
fix: Password for mobileconfig that conforms to password-complexity policy
- Full commit hash
70101d1187a99ade3133e740c93af198ac7f1bee- Author
- Paul Sütterlin <[email protected]>
- Date
- 7 months ago
- Selected line
- 37
$description = 'IMAP';
$description = 'IMAP';
andryyy
over 7 years ago
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 38
} else {
} else {
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 39
$onlyEmailAccount = false;
$onlyEmailAccount = false;
Paul Sütterlin
7 months ago
70101d1
fix: Password for mobileconfig that conforms to password-complexity policy
- Full commit hash
70101d1187a99ade3133e740c93af198ac7f1bee- Author
- Paul Sütterlin <[email protected]>
- Date
- 7 months ago
- Selected line
- 40
$description = 'IMAP, CalDAV, CardDAV';
$description = 'IMAP, CalDAV, CardDAV';
andryyy
over 7 years ago
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 41
}
}
Michael Kuron
over 4 years ago
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 42
if (isset($_GET['app_password'])) {
if (isset($_GET['app_password'])) {
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 43
$app_password = true;
$app_password = true;
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 44
$description .= ' with application password';
$description .= ' with application password';
Paul Sütterlin
7 months ago
70101d1
fix: Password for mobileconfig that conforms to password-complexity policy
- Full commit hash
70101d1187a99ade3133e740c93af198ac7f1bee- Author
- Paul Sütterlin <[email protected]>
- Date
- 7 months ago
- Selected line
- 45
Michael Kuron
over 4 years ago
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 46
if (strpos($_SERVER['HTTP_USER_AGENT'], 'iPad') !== FALSE)
if (strpos($_SERVER['HTTP_USER_AGENT'], 'iPad') !== FALSE)
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 47
$platform = 'iPad';
$platform = 'iPad';
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 48
elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'iPhone') !== FALSE)
elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'iPhone') !== FALSE)
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 49
$platform = 'iPhone';
$platform = 'iPhone';
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 50
elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Macintosh') !== FALSE)
elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Macintosh') !== FALSE)
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 51
$platform = 'Mac';
$platform = 'Mac';
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 52
else
else
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 53
$platform = $_SERVER['HTTP_USER_AGENT'];
$platform = $_SERVER['HTTP_USER_AGENT'];
Paul Sütterlin
7 months ago
70101d1
fix: Password for mobileconfig that conforms to password-complexity policy
- Full commit hash
70101d1187a99ade3133e740c93af198ac7f1bee- Author
- Paul Sütterlin <[email protected]>
- Date
- 7 months ago
- Selected line
- 54
same change
70101d1
fix: Password for mobileconfig that conforms to password-complexity policy
- Full commit hash
70101d1187a99ade3133e740c93af198ac7f1bee- Author
- Paul Sütterlin <[email protected]>
- Date
- 7 months ago
- Selected line
- 55
$password = password_generate();
$password = password_generate();
same change
70101d1
fix: Password for mobileconfig that conforms to password-complexity policy
- Full commit hash
70101d1187a99ade3133e740c93af198ac7f1bee- Author
- Paul Sütterlin <[email protected]>
- Date
- 7 months ago
- Selected line
- 56
Michael Kuron
over 4 years ago
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 57
$attr = array(
$attr = array(
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 58
'app_name' => $platform,
'app_name' => $platform,
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 59
'app_passwd' => $password,
'app_passwd' => $password,
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 60
'app_passwd2' => $password,
'app_passwd2' => $password,
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 61
'active' => 1,
'active' => 1,
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 62
'protocols' => array('imap_access', 'smtp_access'),
'protocols' => array('imap_access', 'smtp_access'),
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 63
);
);
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 64
if (!$onlyEmailAccount) {
if (!$onlyEmailAccount) {
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 65
$attr['protocols'][] = 'dav_access';
$attr['protocols'][] = 'dav_access';
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 66
}
}
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 67
app_passwd("add", $attr);
app_passwd("add", $attr);
Michael Kuron
3 months ago
ffbc37a
Escape generated password in mobileconfig
- Full commit hash
ffbc37a00c0245a5ad6aa87d8aa34f677da698c5- Author
- Michael Kuron <[email protected]>
- Date
- 3 months ago
- Selected line
- 68
$password = htmlspecialchars($password, ENT_NOQUOTES);
$password = htmlspecialchars($password, ENT_NOQUOTES);
Michael Kuron
over 4 years ago
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 69
} else {
} else {
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 70
$app_password = false;
$app_password = false;
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 71
}
}
andryyy
over 7 years ago
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 72
Michael Kuron
about 9 years ago
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 73
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 74
?>
?>
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 75
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
same change
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 76
<plist version="1.0">
<plist version="1.0">
andryyy
over 7 years ago
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 77
<dict>
<dict>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 78
<key>PayloadContent</key>
<key>PayloadContent</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 79
<array>
<array>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 80
<dict>
<dict>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 81
<key>EmailAccountDescription</key>
<key>EmailAccountDescription</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 82
<string><?=$email?></string>
<string><?=$email?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 83
<key>EmailAccountType</key>
<key>EmailAccountType</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 84
<string>EmailTypeIMAP</string>
<string>EmailTypeIMAP</string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 85
<key>EmailAccountName</key>
<key>EmailAccountName</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 86
<string><?=$displayname?></string>
<string><?=$displayname?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 87
<key>EmailAddress</key>
<key>EmailAddress</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 88
<string><?=$email?></string>
<string><?=$email?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 89
<key>IncomingMailServerAuthentication</key>
<key>IncomingMailServerAuthentication</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 90
<string>EmailAuthPassword</string>
<string>EmailAuthPassword</string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 91
<key>IncomingMailServerHostName</key>
<key>IncomingMailServerHostName</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 92
<string><?=$autodiscover_config['imap']['server']?></string>
<string><?=$autodiscover_config['imap']['server']?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 93
<key>IncomingMailServerPortNumber</key>
<key>IncomingMailServerPortNumber</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 94
<integer><?=$autodiscover_config['imap']['port']?></integer>
<integer><?=$autodiscover_config['imap']['port']?></integer>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 95
<key>IncomingMailServerUseSSL</key>
<key>IncomingMailServerUseSSL</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 96
<true/>
<true/>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 97
<key>IncomingMailServerUsername</key>
<key>IncomingMailServerUsername</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 98
<string><?=$email?></string>
<string><?=$email?></string>
Michael Kuron
over 4 years ago
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 99
<?php if($app_password === true): ?>
<?php if($app_password === true): ?>
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 100
<key>IncomingPassword</key>
<key>IncomingPassword</key>
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 101
<string><?=$password?></string>
<string><?=$password?></string>
same change
9bfb74b
[Web] Auto-generated app passwords for Apple configuration profiles (#4316)
- Full commit hash
9bfb74bb1d511d80bf494a5e05ca4a5824950038- Author
- Michael Kuron <[email protected]>
- Date
- over 4 years ago
- Selected line
- 102
<?php endif; ?>
<?php endif; ?>
andryyy
over 7 years ago
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 103
<key>OutgoingMailServerAuthentication</key>
<key>OutgoingMailServerAuthentication</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 104
<string>EmailAuthPassword</string>
<string>EmailAuthPassword</string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 105
<key>OutgoingMailServerHostName</key>
<key>OutgoingMailServerHostName</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 106
<string><?=$autodiscover_config['smtp']['server']?></string>
<string><?=$autodiscover_config['smtp']['server']?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 107
<key>OutgoingMailServerPortNumber</key>
<key>OutgoingMailServerPortNumber</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 108
<integer><?=$autodiscover_config['smtp']['port']?></integer>
<integer><?=$autodiscover_config['smtp']['port']?></integer>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 109
<key>OutgoingMailServerUseSSL</key>
<key>OutgoingMailServerUseSSL</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 110
<true/>
<true/>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 111
<key>OutgoingMailServerUsername</key>
<key>OutgoingMailServerUsername</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 112
<string><?=$email?></string>
<string><?=$email?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 113
<key>OutgoingPasswordSameAsIncomingPassword</key>
<key>OutgoingPasswordSameAsIncomingPassword</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 114
<true/>
<true/>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 115
<key>PayloadDescription</key>
<key>PayloadDescription</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 116
<string>Configures email account.</string>
<string>Configures email account.</string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 117
<key>PayloadDisplayName</key>
<key>PayloadDisplayName</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 118
<string>IMAP Account (<?=$email?>)</string>
<string>IMAP Account (<?=$email?>)</string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 119
<key>PayloadIdentifier</key>
<key>PayloadIdentifier</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 120
<string><?=$identifier?>.email</string>
<string><?=$identifier?>.email</string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 121
<key>PayloadOrganization</key>
<key>PayloadOrganization</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 122
<string></string>
<string></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 123
<key>PayloadType</key>
<key>PayloadType</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 124
<string>com.apple.mail.managed</string>
<string>com.apple.mail.managed</string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 125
<key>PayloadUUID</key>
<key>PayloadUUID</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 126
<string><?=getGUID()?></string>
<string><?=getGUID()?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 127
<key>PayloadVersion</key>
<key>PayloadVersion</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 128
<integer>1</integer>
<integer>1</integer>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 129
<key>PreventAppSheet</key>
<key>PreventAppSheet</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 130
<false/>
<false/>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 131
<key>PreventMove</key>
<key>PreventMove</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 132
<false/>
<false/>
SoftCat
about 6 years ago
e3203f1
Allow activation of own S/MIME Certificates in iOS configuration profile (#3622)
- Full commit hash
e3203f1afb0d88e83241800f65f23b572650d81e- Author
- SoftCat <[email protected]>
- Date
- about 6 years ago
- Selected line
- 133
<key>SMIMESigningUserOverrideable</key>
<key>SMIMESigningUserOverrideable</key>
same change
e3203f1
Allow activation of own S/MIME Certificates in iOS configuration profile (#3622)
- Full commit hash
e3203f1afb0d88e83241800f65f23b572650d81e- Author
- SoftCat <[email protected]>
- Date
- about 6 years ago
- Selected line
- 134
<true/>
<true/>
same change
e3203f1
Allow activation of own S/MIME Certificates in iOS configuration profile (#3622)
- Full commit hash
e3203f1afb0d88e83241800f65f23b572650d81e- Author
- SoftCat <[email protected]>
- Date
- about 6 years ago
- Selected line
- 135
<key>SMIMESigningCertificateUUIDUserOverrideable</key>
<key>SMIMESigningCertificateUUIDUserOverrideable</key>
same change
e3203f1
Allow activation of own S/MIME Certificates in iOS configuration profile (#3622)
- Full commit hash
e3203f1afb0d88e83241800f65f23b572650d81e- Author
- SoftCat <[email protected]>
- Date
- about 6 years ago
- Selected line
- 136
<true/>
<true/>
same change
e3203f1
Allow activation of own S/MIME Certificates in iOS configuration profile (#3622)
- Full commit hash
e3203f1afb0d88e83241800f65f23b572650d81e- Author
- SoftCat <[email protected]>
- Date
- about 6 years ago
- Selected line
- 137
<key>SMIMEEncryptByDefaultUserOverrideable</key>
<key>SMIMEEncryptByDefaultUserOverrideable</key>
same change
e3203f1
Allow activation of own S/MIME Certificates in iOS configuration profile (#3622)
- Full commit hash
e3203f1afb0d88e83241800f65f23b572650d81e- Author
- SoftCat <[email protected]>
- Date
- about 6 years ago
- Selected line
- 138
<true/>
<true/>
same change
e3203f1
Allow activation of own S/MIME Certificates in iOS configuration profile (#3622)
- Full commit hash
e3203f1afb0d88e83241800f65f23b572650d81e- Author
- SoftCat <[email protected]>
- Date
- about 6 years ago
- Selected line
- 139
<key>SMIMEEncryptionCertificateUUIDUserOverrideable</key>
<key>SMIMEEncryptionCertificateUUIDUserOverrideable</key>
same change
e3203f1
Allow activation of own S/MIME Certificates in iOS configuration profile (#3622)
- Full commit hash
e3203f1afb0d88e83241800f65f23b572650d81e- Author
- SoftCat <[email protected]>
- Date
- about 6 years ago
- Selected line
- 140
<true/>
<true/>
same change
e3203f1
Allow activation of own S/MIME Certificates in iOS configuration profile (#3622)
- Full commit hash
e3203f1afb0d88e83241800f65f23b572650d81e- Author
- SoftCat <[email protected]>
- Date
- about 6 years ago
- Selected line
- 141
<key>SMIMEEnableEncryptionPerMessageSwitch</key>
<key>SMIMEEnableEncryptionPerMessageSwitch</key>
same change
e3203f1
Allow activation of own S/MIME Certificates in iOS configuration profile (#3622)
- Full commit hash
e3203f1afb0d88e83241800f65f23b572650d81e- Author
- SoftCat <[email protected]>
- Date
- about 6 years ago
- Selected line
- 142
<true/>
<true/>
andryyy
over 7 years ago
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 143
</dict>
</dict>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 144
<?php if($onlyEmailAccount === false): ?>
<?php if($onlyEmailAccount === false): ?>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 145
<dict>
<dict>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 146
<key>CalDAVAccountDescription</key>
<key>CalDAVAccountDescription</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 147
<string><?=$email?></string>
<string><?=$email?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 148
<key>CalDAVHostName</key>
<key>CalDAVHostName</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 149
<string><?=$autodiscover_config['caldav']['server']?></string>
<string><?=$autodiscover_config['caldav']['server']?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 150
<key>CalDAVPort</key>
<key>CalDAVPort</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 151
<real><?=$autodiscover_config['caldav']['port']?></real>
<real><?=$autodiscover_config['caldav']['port']?></real>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 152
<key>CalDAVPrincipalURL</key>
<key>CalDAVPrincipalURL</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 153
<string>/SOGo/dav/<?=$email?></string>
<string>/SOGo/dav/<?=$email?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 154
<key>CalDAVUseSSL</key>
<key>CalDAVUseSSL</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 155
<true/>
<true/>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 156
<key>CalDAVUsername</key>
<key>CalDAVUsername</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 157
<string><?=$email?></string>
<string><?=$email?></string>
HolzHannes
over 4 years ago
97e3227
added key CalDAVPassword and key CardDAVPassword
- Full commit hash
97e3227fbe83af85ee7d9c69106c48f82cf6fafe- Author
- HolzHannes <[email protected]>
- Date
- over 4 years ago
- Selected line
- 158
<?php if($app_password === true): ?>
<?php if($app_password === true): ?>
same change
97e3227
added key CalDAVPassword and key CardDAVPassword
- Full commit hash
97e3227fbe83af85ee7d9c69106c48f82cf6fafe- Author
- HolzHannes <[email protected]>
- Date
- over 4 years ago
- Selected line
- 159
<key>CalDAVPassword</key>
<key>CalDAVPassword</key>
same change
97e3227
added key CalDAVPassword and key CardDAVPassword
- Full commit hash
97e3227fbe83af85ee7d9c69106c48f82cf6fafe- Author
- HolzHannes <[email protected]>
- Date
- over 4 years ago
- Selected line
- 160
<string><?=$password?></string>
<string><?=$password?></string>
same change
97e3227
added key CalDAVPassword and key CardDAVPassword
- Full commit hash
97e3227fbe83af85ee7d9c69106c48f82cf6fafe- Author
- HolzHannes <[email protected]>
- Date
- over 4 years ago
- Selected line
- 161
<?php endif; ?>
<?php endif; ?>
andryyy
over 7 years ago
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 162
<key>PayloadDescription</key>
<key>PayloadDescription</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 163
<string>Configures CalDAV account.</string>
<string>Configures CalDAV account.</string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 164
<key>PayloadDisplayName</key>
<key>PayloadDisplayName</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 165
<string>CalDAV (<?=$email?>)</string>
<string>CalDAV (<?=$email?>)</string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 166
<key>PayloadIdentifier</key>
<key>PayloadIdentifier</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 167
<string><?=$identifier?>.CalDAV</string>
<string><?=$identifier?>.CalDAV</string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 168
<key>PayloadOrganization</key>
<key>PayloadOrganization</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 169
<string></string>
<string></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 170
<key>PayloadType</key>
<key>PayloadType</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 171
<string>com.apple.caldav.account</string>
<string>com.apple.caldav.account</string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 172
<key>PayloadUUID</key>
<key>PayloadUUID</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 173
<string><?=getGUID()?></string>
<string><?=getGUID()?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 174
<key>PayloadVersion</key>
<key>PayloadVersion</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 175
<integer>1</integer>
<integer>1</integer>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 176
</dict>
</dict>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 177
<dict>
<dict>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 178
<key>CardDAVAccountDescription</key>
<key>CardDAVAccountDescription</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 179
<string><?=$email?></string>
<string><?=$email?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 180
<key>CardDAVHostName</key>
<key>CardDAVHostName</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 181
<string><?=$autodiscover_config['carddav']['server']?></string>
<string><?=$autodiscover_config['carddav']['server']?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 182
<key>CardDAVPort</key>
<key>CardDAVPort</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 183
<integer><?=$autodiscover_config['carddav']['port']?></integer>
<integer><?=$autodiscover_config['carddav']['port']?></integer>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 184
<key>CardDAVPrincipalURL</key>
<key>CardDAVPrincipalURL</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 185
<string>/SOGo/dav/<?=$email?></string>
<string>/SOGo/dav/<?=$email?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 186
<key>CardDAVUseSSL</key>
<key>CardDAVUseSSL</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 187
<true/>
<true/>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 188
<key>CardDAVUsername</key>
<key>CardDAVUsername</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 189
<string><?=$email?></string>
<string><?=$email?></string>
HolzHannes
over 4 years ago
97e3227
added key CalDAVPassword and key CardDAVPassword
- Full commit hash
97e3227fbe83af85ee7d9c69106c48f82cf6fafe- Author
- HolzHannes <[email protected]>
- Date
- over 4 years ago
- Selected line
- 190
<?php if($app_password === true): ?>
<?php if($app_password === true): ?>
same change
97e3227
added key CalDAVPassword and key CardDAVPassword
- Full commit hash
97e3227fbe83af85ee7d9c69106c48f82cf6fafe- Author
- HolzHannes <[email protected]>
- Date
- over 4 years ago
- Selected line
- 191
<key>CardDAVPassword</key>
<key>CardDAVPassword</key>
same change
97e3227
added key CalDAVPassword and key CardDAVPassword
- Full commit hash
97e3227fbe83af85ee7d9c69106c48f82cf6fafe- Author
- HolzHannes <[email protected]>
- Date
- over 4 years ago
- Selected line
- 192
<string><?=$password?></string>
<string><?=$password?></string>
same change
97e3227
added key CalDAVPassword and key CardDAVPassword
- Full commit hash
97e3227fbe83af85ee7d9c69106c48f82cf6fafe- Author
- HolzHannes <[email protected]>
- Date
- over 4 years ago
- Selected line
- 193
<?php endif; ?>
<?php endif; ?>
andryyy
over 7 years ago
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 194
<key>PayloadDescription</key>
<key>PayloadDescription</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 195
<string>Configures CardDAV accounts</string>
<string>Configures CardDAV accounts</string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 196
<key>PayloadDisplayName</key>
<key>PayloadDisplayName</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 197
<string>CardDAV (<?=$email?>)</string>
<string>CardDAV (<?=$email?>)</string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 198
<key>PayloadIdentifier</key>
<key>PayloadIdentifier</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 199
<string><?=$identifier?>.carddav</string>
<string><?=$identifier?>.carddav</string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 200
<key>PayloadOrganization</key>
<key>PayloadOrganization</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 201
<string></string>
<string></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 202
<key>PayloadType</key>
<key>PayloadType</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 203
<string>com.apple.carddav.account</string>
<string>com.apple.carddav.account</string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 204
<key>PayloadUUID</key>
<key>PayloadUUID</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 205
<string><?=getGUID()?></string>
<string><?=getGUID()?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 206
<key>PayloadVersion</key>
<key>PayloadVersion</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 207
<integer>1</integer>
<integer>1</integer>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 208
</dict>
</dict>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 209
<?php endif; ?>
<?php endif; ?>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 210
</array>
</array>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 211
<key>PayloadDescription</key>
<key>PayloadDescription</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 212
<string><?=$description?></string>
<string><?=$description?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 213
<key>PayloadDisplayName</key>
<key>PayloadDisplayName</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 214
<string><?=$email?></string>
<string><?=$email?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 215
<key>PayloadIdentifier</key>
<key>PayloadIdentifier</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 216
<string><?=$identifier?></string>
<string><?=$identifier?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 217
<key>PayloadOrganization</key>
<key>PayloadOrganization</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 218
<string><?=$UI_TEXTS['main_name']?></string>
<string><?=$UI_TEXTS['main_name']?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 219
<key>PayloadRemovalDisallowed</key>
<key>PayloadRemovalDisallowed</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 220
<false/>
<false/>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 221
<key>PayloadType</key>
<key>PayloadType</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 222
<string>Configuration</string>
<string>Configuration</string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 223
<key>PayloadUUID</key>
<key>PayloadUUID</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 224
<string><?=getGUID()?></string>
<string><?=getGUID()?></string>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 225
<key>PayloadVersion</key>
<key>PayloadVersion</key>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 226
<integer>1</integer>
<integer>1</integer>
same change
ca9c610
[Web] Apple mobileconfig enhancements by @feldsam
- Full commit hash
ca9c610460d9538a65ddf77c77fc89c50cf8cc40- Author
- andryyy <[email protected]>
- Date
- over 7 years ago
- Selected line
- 227
</dict>
</dict>
Michael Kuron
about 9 years ago
5abeb31
Autoconfig harmonization
- Full commit hash
5abeb313bad795f9005367416f4edacff05a078a- Author
- Michael Kuron <[email protected]>
- Date
- about 9 years ago
- Selected line
- 228
</plist>
</plist>