123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- export function InstallWizard(params = {}) {
- return {
- 'mail.use-tls': {
- field: {
- disabledReason: null,
- default: false,
- required: true,
- disabled: false,
- allowEmpty: true,
- isSet: true,
- },
- },
- 'mail.use-ssl': {
- field: {
- disabledReason: null,
- default: false,
- required: true,
- disabled: false,
- allowEmpty: true,
- isSet: true,
- },
- },
- 'mail.username': {
- field: {
- disabledReason: null,
- default: '',
- required: true,
- disabled: false,
- allowEmpty: true,
- isSet: true,
- },
- },
- 'mail.port': {
- field: {
- disabledReason: null,
- default: 25,
- required: true,
- disabled: false,
- allowEmpty: false,
- isSet: true,
- },
- },
- 'system.admin-email': {
- field: {
- disabledReason: null,
- default: '',
- required: true,
- disabled: false,
- allowEmpty: false,
- isSet: true,
- },
- },
- 'mail.password': {
- field: {
- disabledReason: null,
- default: '',
- required: true,
- disabled: false,
- allowEmpty: true,
- isSet: true,
- },
- },
- 'mail.from': {
- field: {
- disabledReason: null,
- default: 'root@localhost',
- required: true,
- disabled: false,
- allowEmpty: false,
- isSet: true,
- },
- },
- 'system.url-prefix': {
- field: {
- disabledReason: 'diskPriority',
- default: '',
- required: true,
- disabled: true,
- allowEmpty: false,
- isSet: true,
- },
- },
- 'auth.allow-registration': {
- field: {
- disabledReason: null,
- default: false,
- required: true,
- disabled: false,
- allowEmpty: true,
- isSet: true,
- },
- },
- 'beacon.anonymous': {
- field: {
- disabledReason: null,
- default: false,
- required: true,
- disabled: false,
- allowEmpty: true,
- isSet: true,
- },
- },
- 'mail.host': {
- field: {
- disabledReason: null,
- default: 'localhost',
- required: true,
- disabled: false,
- allowEmpty: false,
- isSet: true,
- },
- },
- ...params,
- };
- }
|