mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-28 19:49:20 +03:00
Changes for #1078
This commit is contained in:
parent
6e0372dcee
commit
80d64574a6
7 changed files with 149 additions and 48 deletions
|
|
@ -24,6 +24,10 @@ export class AdminSettingsContacts extends AbstractViewSettings {
|
|||
|
||||
this.addSettings(['contactsEnable','contactsSync']);
|
||||
|
||||
this.addSetting('contactsMySQLSSLCA');
|
||||
this.addSetting('contactsMySQLSSLVerify');
|
||||
this.addSetting('contactsMySQLSSLCiphers');
|
||||
|
||||
addObservablesTo(this, {
|
||||
testing: false,
|
||||
testContactsSuccess: false,
|
||||
|
|
@ -92,10 +96,13 @@ export class AdminSettingsContacts extends AbstractViewSettings {
|
|||
|
||||
this.testing(false);
|
||||
}, {
|
||||
contactsPdoType: this.contactsPdoType(),
|
||||
contactsPdoDsn: this.contactsPdoDsn(),
|
||||
contactsPdoUser: this.contactsPdoUser(),
|
||||
contactsPdoPassword: this.contactsPdoPassword()
|
||||
PdoType: this.contactsPdoType(),
|
||||
PdoDsn: this.contactsPdoDsn(),
|
||||
PdoUser: this.contactsPdoUser(),
|
||||
PdoPassword: this.contactsPdoPassword(),
|
||||
MySQLSSLCA: this.contactsMySQLSSLCA(),
|
||||
MySQLSSLVerify: this.contactsMySQLSSLVerify(),
|
||||
MySQLSSLCiphers: this.contactsMySQLSSLCiphers()
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue