Revision f26687f6
Von Tamino Steinert vor mehr als 1 Jahr hinzugefügt
SL/DB/MetaSetup/Default.pm | ||
---|---|---|
116 | 116 |
gl_changeable => { type => 'integer', default => 2, not_null => 1 }, |
117 | 117 |
global_bcc => { type => 'text', default => '' }, |
118 | 118 |
id => { type => 'serial', not_null => 1 }, |
119 |
imap_client_base_folder => { type => 'text', default => 'INBOX', not_null => 1 }, |
|
120 |
imap_client_enabled => { type => 'boolean', default => 'false', not_null => 1 }, |
|
121 |
imap_client_hostname => { type => 'text', default => '', not_null => 1 }, |
|
122 |
imap_client_password => { type => 'text', default => '', not_null => 1 }, |
|
123 |
imap_client_port => { type => 'integer', default => 993, not_null => 1 }, |
|
124 |
imap_client_ssl => { type => 'boolean', default => 'true', not_null => 1 }, |
|
125 |
imap_client_username => { type => 'text', default => '', not_null => 1 }, |
|
119 | 126 |
income_accno_id => { type => 'integer' }, |
120 | 127 |
inventory_accno_id => { type => 'integer' }, |
121 | 128 |
inventory_system => { type => 'text' }, |
... | ... | |
132 | 139 |
letternumber => { type => 'integer' }, |
133 | 140 |
lock_oe_subversions => { type => 'boolean', default => 'false', not_null => 1 }, |
134 | 141 |
loss_carried_forward_chart_id => { type => 'integer' }, |
142 |
mail_delivery_host => { type => 'text', default => '', not_null => 1 }, |
|
143 |
mail_delivery_login => { type => 'text', default => '', not_null => 1 }, |
|
144 |
mail_delivery_password => { type => 'text', default => '', not_null => 1 }, |
|
145 |
mail_delivery_port => { type => 'integer', default => 25, not_null => 1 }, |
|
146 |
mail_delivery_security => { type => 'text', default => 'tls', not_null => 1 }, |
|
135 | 147 |
max_future_booking_interval => { type => 'integer', default => 360 }, |
136 | 148 |
mtime => { type => 'timestamp' }, |
137 | 149 |
normalize_part_descriptions => { type => 'boolean', default => 'true' }, |
... | ... | |
187 | 199 |
sales_reclamation_show_delete => { type => 'boolean', default => 'true', not_null => 1 }, |
188 | 200 |
sales_serial_eq_charge => { type => 'boolean', default => 'false', not_null => 1 }, |
189 | 201 |
sdonumber => { type => 'text' }, |
202 |
sent_emails_in_imap_enabled => { type => 'boolean', default => 'false', not_null => 1 }, |
|
203 |
sent_emails_in_imap_folder => { type => 'text', default => 'Sent', not_null => 1 }, |
|
204 |
sent_emails_in_imap_hostname => { type => 'text', default => '', not_null => 1 }, |
|
205 |
sent_emails_in_imap_password => { type => 'text', default => '', not_null => 1 }, |
|
206 |
sent_emails_in_imap_port => { type => 'integer', default => 993, not_null => 1 }, |
|
207 |
sent_emails_in_imap_ssl => { type => 'boolean', default => 'true', not_null => 1 }, |
|
208 |
sent_emails_in_imap_username => { type => 'text', default => '', not_null => 1 }, |
|
190 | 209 |
sepa_creditor_id => { type => 'text' }, |
191 | 210 |
sepa_reference_add_vc_vc_id => { type => 'boolean', default => 'false' }, |
192 | 211 |
sepa_set_duedate_as_default_exec_date => { type => 'boolean', default => 'false' }, |
Auch abrufbar als: Unified diff
Default(ClientConfig): Felder für Email-Server-Konfigurationen