123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573 |
- Setting.create_if_not_exists(
- title: 'Application secret',
- name: 'application_secret',
- area: 'Core',
- description: 'Defines the random application secret.',
- options: {},
- state: SecureRandom.hex(128),
- preferences: {
- permission: ['admin'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'System Init Done',
- name: 'system_init_done',
- area: 'Core',
- description: 'Defines if application is in init mode.',
- options: {},
- state: false,
- preferences: { online_service_disable: true },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'App Version',
- name: 'app_version',
- area: 'Core::WebApp',
- description: 'Only used internally to propagate current web app version to clients.',
- options: {},
- state: '',
- preferences: { online_service_disable: true },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Maintenance Mode',
- name: 'maintenance_mode',
- area: 'Core::WebApp',
- description: 'Enable or disable the maintenance mode of Zammad. If enabled, all non-administrators get logged out and only administrators can start a new session.',
- options: {},
- state: false,
- preferences: {
- permission: ['admin.maintenance'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Maintenance Login',
- name: 'maintenance_login',
- area: 'Core::WebApp',
- description: 'Put a message on the login page. To change it, click on the text area below and change it inline.',
- options: {},
- state: false,
- preferences: {
- permission: ['admin.maintenance'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Maintenance Login',
- name: 'maintenance_login_message',
- area: 'Core::WebApp',
- description: 'Message for login page.',
- options: {},
- state: 'Something about to share. Click here to change.',
- preferences: {
- permission: ['admin.maintenance'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Developer System',
- name: 'developer_mode',
- area: 'Core::Develop',
- description: 'Defines if application is in developer mode (useful for developer, all users have the same password, password reset will work without email delivery).',
- options: {},
- state: false,
- preferences: { online_service_disable: true },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Online Service',
- name: 'system_online_service',
- area: 'Core',
- description: 'Defines if application is used as online service.',
- options: {},
- state: false,
- preferences: { online_service_disable: true },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Product Name',
- name: 'product_name',
- area: 'System::Branding',
- description: 'Defines the name of the application, shown in the web interface, tabs and title bar of the web browser.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'product_name',
- tag: 'input',
- },
- ],
- },
- preferences: {
- render: true,
- prio: 1,
- placeholder: true,
- permission: ['admin.branding'],
- },
- state: 'Zammad Helpdesk',
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Logo',
- name: 'product_logo',
- area: 'System::Branding',
- description: 'Defines the logo of the application, shown in the web interface.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'product_logo',
- tag: 'input',
- },
- ],
- },
- preferences: {
- prio: 3,
- controller: 'SettingsAreaLogo',
- permission: ['admin.branding'],
- },
- state: 'logo.svg',
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Organization',
- name: 'organization',
- area: 'System::Branding',
- description: 'Will be shown in the app and is included in email footers.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'organization',
- tag: 'input',
- },
- ],
- },
- state: '',
- preferences: {
- prio: 2,
- placeholder: true,
- permission: ['admin.branding'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Locale',
- name: 'locale_default',
- area: 'System::Branding',
- description: 'Defines the system default language.',
- options: {
- form: [
- {
- name: 'locale_default',
- }
- ],
- },
- state: 'en-us',
- preferences: {
- prio: 8,
- controller: 'SettingsAreaItemDefaultLocale',
- permission: ['admin.system'],
- },
- frontend: true
- )
- Setting.create_or_update(
- title: 'Pretty Date',
- name: 'pretty_date_format',
- area: 'System::Branding',
- description: 'Defines pretty date format.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'pretty_date_format',
- tag: 'select',
- options: {
- 'relative': 'relative - e. g. "2 hours ago" or "2 days and 15 minutes ago"',
- 'absolute': 'absolute - e. g. "Monday 09:30" or "Tuesday 23. Feb 14:20"',
- },
- },
- ],
- },
- preferences: {
- render: true,
- prio: 10,
- permission: ['admin.branding'],
- },
- state: 'relative',
- frontend: true
- )
- options = {}
- (10..99).each do |item|
- options[item] = item
- end
- system_id = rand(10..99)
- Setting.create_if_not_exists(
- title: 'SystemID',
- name: 'system_id',
- area: 'System::Base',
- description: 'Defines the system identifier. Every ticket number contains this ID. This ensures that only tickets which belong to your system will be processed as follow-ups (useful when communicating between two instances of Zammad).',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'system_id',
- tag: 'select',
- options: options,
- },
- ],
- },
- state: system_id,
- preferences: {
- online_service_disable: true,
- placeholder: true,
- authentication: true,
- permission: ['admin.system'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Fully Qualified Domain Name',
- name: 'fqdn',
- area: 'System::Base',
- description: 'Defines the fully qualified domain name of the system. This setting is used as a variable, #{setting.fqdn} which is found in all forms of messaging used by the application, to build links to the tickets within your system.', # rubocop:disable Lint/InterpolationCheck
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'fqdn',
- tag: 'input',
- },
- ],
- },
- state: 'zammad.example.com',
- preferences: {
- online_service_disable: true,
- placeholder: true,
- permission: ['admin.system'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Websocket port',
- name: 'websocket_port',
- area: 'System::WebSocket',
- description: 'Defines the port of the websocket server.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'websocket_port',
- tag: 'input',
- },
- ],
- },
- state: '6042',
- preferences: { online_service_disable: true },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'HTTP type',
- name: 'http_type',
- area: 'System::Base',
- description: 'Define the http protocol of your instance.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'http_type',
- tag: 'select',
- options: {
- 'https' => 'https',
- 'http' => 'http',
- },
- },
- ],
- },
- state: 'http',
- preferences: {
- online_service_disable: true,
- placeholder: true,
- permission: ['admin.system'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Storage Mechanism',
- name: 'storage_provider',
- area: 'System::Storage',
- description: '"Database" stores all attachments in the database (not recommended for storing large amounts of data). "Filesystem" stores the data in the filesystem. You can switch between the modules even on a system that is already in production without any loss of data.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'storage_provider',
- tag: 'select',
- tranlate: true,
- options: {
- 'DB' => 'Database',
- 'File' => 'Filesystem',
- },
- },
- ],
- },
- state: 'DB',
- preferences: {
- controller: 'SettingsAreaStorageProvider',
- online_service_disable: true,
- permission: ['admin.system'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Image Service',
- name: 'image_backend',
- area: 'System::Services',
- description: 'Defines the backend for user and organization image lookups.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'image_backend',
- tag: 'select',
- options: {
- '' => '-',
- 'Service::Image::Zammad' => 'Zammad Image Service',
- },
- },
- ],
- },
- state: 'Service::Image::Zammad',
- preferences: {
- prio: 1,
- permission: ['admin.system'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Geo IP Service',
- name: 'geo_ip_backend',
- area: 'System::Services',
- description: 'Defines the backend for geo IP lookups. Shows also location of an IP address if an IP address is shown.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'geo_ip_backend',
- tag: 'select',
- options: {
- '' => '-',
- 'Service::GeoIp::Zammad' => 'Zammad GeoIP Service',
- },
- },
- ],
- },
- state: 'Service::GeoIp::Zammad',
- preferences: {
- prio: 2,
- permission: ['admin.system'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Geo Location Service',
- name: 'geo_location_backend',
- area: 'System::Services',
- description: 'Defines the backend for geo location lookups to store geo locations for addresses.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'geo_location_backend',
- tag: 'select',
- options: {
- '' => '-',
- 'Service::GeoLocation::Gmaps' => 'Google Maps',
- },
- },
- ],
- },
- state: 'Service::GeoLocation::Gmaps',
- preferences: {
- prio: 3,
- permission: ['admin.system'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Geo Calendar Service',
- name: 'geo_calendar_backend',
- area: 'System::Services',
- description: 'Defines the backend for geo calendar lookups. Used for initial calendar succession.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'geo_calendar_backend',
- tag: 'select',
- options: {
- '' => '-',
- 'Service::GeoCalendar::Zammad' => 'Zammad GeoCalendar Service',
- },
- },
- ],
- },
- state: 'Service::GeoCalendar::Zammad',
- preferences: {
- prio: 2,
- permission: ['admin.system'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Proxy Settings',
- name: 'proxy',
- area: 'System::Network',
- description: 'Address of the proxy server for http and https resources.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'proxy',
- tag: 'input',
- placeholder: 'proxy.example.com:3128',
- },
- ],
- },
- state: '',
- preferences: {
- online_service_disable: true,
- controller: 'SettingsAreaProxy',
- prio: 1,
- permission: ['admin.system'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Proxy User',
- name: 'proxy_username',
- area: 'System::Network',
- description: 'Username for proxy connection.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'proxy_username',
- tag: 'input',
- },
- ],
- },
- state: '',
- preferences: {
- disabled: true,
- online_service_disable: true,
- prio: 2,
- permission: ['admin.system'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Proxy Password',
- name: 'proxy_password',
- area: 'System::Network',
- description: 'Password for proxy connection.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'proxy_password',
- tag: 'input',
- },
- ],
- },
- state: '',
- preferences: {
- disabled: true,
- online_service_disable: true,
- prio: 3,
- permission: ['admin.system'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'No Proxy',
- name: 'proxy_no',
- area: 'System::Network',
- description: 'No proxy for the following hosts.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'proxy_no',
- tag: 'input',
- },
- ],
- },
- state: 'localhost,127.0.0.0,::1',
- preferences: {
- disabled: true,
- online_service_disable: true,
- prio: 4,
- permission: ['admin.system'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Send client stats',
- name: 'ui_send_client_stats',
- area: 'System::UI',
- description: 'Send client stats/error message to central server to improve the usability.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'ui_send_client_stats',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- preferences: {
- prio: 1,
- permission: ['admin.system'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Client storage',
- name: 'ui_client_storage',
- area: 'System::UI',
- description: 'Use client storage to cache data to enhance performance of application.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'ui_client_storage',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- preferences: {
- prio: 2,
- permission: ['admin.system'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Note - default visibility',
- name: 'ui_ticket_zoom_article_note_new_internal',
- area: 'UI::TicketZoom',
- description: 'Default visibility for new note.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'ui_ticket_zoom_article_note_new_internal',
- tag: 'boolean',
- translate: true,
- options: {
- true => 'internal',
- false => 'public',
- },
- },
- ],
- },
- state: true,
- preferences: {
- prio: 100,
- permission: ['admin.ui'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Email - subject field',
- name: 'ui_ticket_zoom_article_email_subject',
- area: 'UI::TicketZoom',
- description: 'Use subject field for emails. If disabled, the ticket title will be used as subject.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'ui_ticket_zoom_article_email_subject',
- tag: 'boolean',
- translate: true,
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- preferences: {
- prio: 200,
- permission: ['admin.ui'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Email - full quote',
- name: 'ui_ticket_zoom_article_email_full_quote',
- area: 'UI::TicketZoom',
- description: 'Enable if you want to quote the full email in your answer. The quoted email will be put at the end of your answer. If you just want to quote a certain phrase, just mark the text and press reply (this feature is always available).',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'ui_ticket_zoom_article_email_full_quote',
- tag: 'boolean',
- translate: true,
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- preferences: {
- prio: 220,
- permission: ['admin.ui'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Twitter - tweet initials',
- name: 'ui_ticket_zoom_article_twitter_initials',
- area: 'UI::TicketZoom',
- description: 'Add sender initials to end of a tweet.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'ui_ticket_zoom_article_twitter_initials',
- tag: 'boolean',
- translate: true,
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: true,
- preferences: {
- prio: 300,
- permission: ['admin.ui'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'New User Accounts',
- name: 'user_create_account',
- area: 'Security::Base',
- description: 'Enables users to create their own account via web interface.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'user_create_account',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: true,
- preferences: {
- permission: ['admin.security'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Lost Password',
- name: 'user_lost_password',
- area: 'Security::Base',
- description: 'Activates lost password feature for users.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'user_lost_password',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: true,
- preferences: {
- permission: ['admin.security'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'User email for muliple users',
- name: 'user_email_multiple_use',
- area: 'Model::User',
- description: 'Allow to use email address for muliple users.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'user_email_multiple_use',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- preferences: {
- permission: ['admin'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Authentication via %s',
- name: 'auth_ldap',
- area: 'Security::Authentication',
- description: 'Enables user authentication via %s.',
- preferences: {
- title_i18n: ['LDAP'],
- description_i18n: ['LDAP'],
- permission: ['admin.security'],
- },
- state: {
- adapter: 'Auth::Ldap',
- host: 'localhost',
- port: 389,
- bind_dn: 'cn=Manager,dc=example,dc=org',
- bind_pw: 'example',
- uid: 'mail',
- base: 'dc=example,dc=org',
- always_filter: '',
- always_roles: %w[Admin Agent],
- always_groups: ['Users'],
- sync_params: {
- firstname: 'sn',
- lastname: 'givenName',
- email: 'mail',
- login: 'mail',
- },
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Authentication via %s',
- name: 'auth_twitter',
- area: 'Security::ThirdPartyAuthentication',
- description: 'Enables user authentication via %s. Register your app first at [%s](%s).',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'auth_twitter',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- preferences: {
- controller: 'SettingsAreaSwitch',
- sub: ['auth_twitter_credentials'],
- title_i18n: ['Twitter'],
- description_i18n: ['Twitter', 'Twitter Developer Site', 'https://dev.twitter.com/apps'],
- permission: ['admin.security'],
- },
- state: false,
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Twitter App Credentials',
- name: 'auth_twitter_credentials',
- area: 'Security::ThirdPartyAuthentication::Twitter',
- description: 'App credentials for Twitter.',
- options: {
- form: [
- {
- display: 'Twitter Key',
- null: true,
- name: 'key',
- tag: 'input',
- },
- {
- display: 'Twitter Secret',
- null: true,
- name: 'secret',
- tag: 'input',
- },
- ],
- },
- state: {},
- preferences: {
- permission: ['admin.security'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Authentication via %s',
- name: 'auth_facebook',
- area: 'Security::ThirdPartyAuthentication',
- description: 'Enables user authentication via %s. Register your app first at [%s](%s).',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'auth_facebook',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- preferences: {
- controller: 'SettingsAreaSwitch',
- sub: ['auth_facebook_credentials'],
- title_i18n: ['Facebook'],
- description_i18n: ['Facebook', 'Facebook Developer Site', 'https://developers.facebook.com/apps/'],
- permission: ['admin.security'],
- },
- state: false,
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Facebook App Credentials',
- name: 'auth_facebook_credentials',
- area: 'Security::ThirdPartyAuthentication::Facebook',
- description: 'App credentials for Facebook.',
- options: {
- form: [
- {
- display: 'App ID',
- null: true,
- name: 'app_id',
- tag: 'input',
- },
- {
- display: 'App Secret',
- null: true,
- name: 'app_secret',
- tag: 'input',
- },
- ],
- },
- state: {},
- preferences: {
- permission: ['admin.security'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Authentication via %s',
- name: 'auth_google_oauth2',
- area: 'Security::ThirdPartyAuthentication',
- description: 'Enables user authentication via %s. Register your app first at [%s](%s).',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'auth_google_oauth2',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- preferences: {
- controller: 'SettingsAreaSwitch',
- sub: ['auth_google_oauth2_credentials'],
- title_i18n: ['Google'],
- description_i18n: ['Google', 'Google API Console Site', 'https://console.developers.google.com/apis/credentials'],
- permission: ['admin.security'],
- },
- state: false,
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Google App Credentials',
- name: 'auth_google_oauth2_credentials',
- area: 'Security::ThirdPartyAuthentication::Google',
- description: 'Enables user authentication via Google.',
- options: {
- form: [
- {
- display: 'Client ID',
- null: true,
- name: 'client_id',
- tag: 'input',
- },
- {
- display: 'Client Secret',
- null: true,
- name: 'client_secret',
- tag: 'input',
- },
- ],
- },
- state: {},
- preferences: {
- permission: ['admin.security'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Authentication via %s',
- name: 'auth_linkedin',
- area: 'Security::ThirdPartyAuthentication',
- description: 'Enables user authentication via %s. Register your app first at [%s](%s).',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'auth_linkedin',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- preferences: {
- controller: 'SettingsAreaSwitch',
- sub: ['auth_linkedin_credentials'],
- title_i18n: ['LinkedIn'],
- description_i18n: ['LinkedIn', 'Linkedin Developer Site', 'https://www.linkedin.com/developer/apps'],
- permission: ['admin.security'],
- },
- state: false,
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'LinkedIn App Credentials',
- name: 'auth_linkedin_credentials',
- area: 'Security::ThirdPartyAuthentication::Linkedin',
- description: 'Enables user authentication via LinkedIn.',
- options: {
- form: [
- {
- display: 'App ID',
- null: true,
- name: 'app_id',
- tag: 'input',
- },
- {
- display: 'App Secret',
- null: true,
- name: 'app_secret',
- tag: 'input',
- },
- ],
- },
- state: {},
- preferences: {
- permission: ['admin.security'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Authentication via %s',
- name: 'auth_github',
- area: 'Security::ThirdPartyAuthentication',
- description: 'Enables user authentication via %s. Register your app first at [%s](%s).',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'auth_github',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- preferences: {
- controller: 'SettingsAreaSwitch',
- sub: ['auth_github_credentials'],
- title_i18n: ['Github'],
- description_i18n: ['Github', 'Github OAuth Applications', 'https://github.com/settings/applications'],
- permission: ['admin.security'],
- },
- state: false,
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Github App Credentials',
- name: 'auth_github_credentials',
- area: 'Security::ThirdPartyAuthentication::Github',
- description: 'Enables user authentication via Github.',
- options: {
- form: [
- {
- display: 'App ID',
- null: true,
- name: 'app_id',
- tag: 'input',
- },
- {
- display: 'App Secret',
- null: true,
- name: 'app_secret',
- tag: 'input',
- },
- ],
- },
- state: {},
- preferences: {
- permission: ['admin.security'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Authentication via %s',
- name: 'auth_gitlab',
- area: 'Security::ThirdPartyAuthentication',
- description: 'Enables user authentication via %s. Register your app first at [%s](%s).',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'auth_gitlab',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- preferences: {
- controller: 'SettingsAreaSwitch',
- sub: ['auth_gitlab_credentials'],
- title_i18n: ['Gitlab'],
- description_i18n: ['Gitlab', 'Gitlab Applications', 'https://your-gitlab-host/admin/applications'],
- permission: ['admin.security'],
- },
- state: false,
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Gitlab App Credentials',
- name: 'auth_gitlab_credentials',
- area: 'Security::ThirdPartyAuthentication::Gitlab',
- description: 'Enables user authentication via Gitlab.',
- options: {
- form: [
- {
- display: 'App ID',
- null: true,
- name: 'app_id',
- tag: 'input',
- },
- {
- display: 'App Secret',
- null: true,
- name: 'app_secret',
- tag: 'input',
- },
- {
- display: 'Site',
- null: true,
- name: 'site',
- tag: 'input',
- placeholder: 'https://gitlab.YOURDOMAIN.com',
- },
- ],
- },
- state: {},
- preferences: {
- permission: ['admin.security'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Authentication via %s',
- name: 'auth_microsoft_office365',
- area: 'Security::ThirdPartyAuthentication',
- description: 'Enables user authentication via %s. Register your app first at [%s](%s).',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'auth_microsoft_office365',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- preferences: {
- controller: 'SettingsAreaSwitch',
- sub: ['auth_microsoft_office365_credentials'],
- title_i18n: ['Office 365'],
- description_i18n: ['Office 365', 'Microsoft Application Registration Portal', 'https://apps.dev.microsoft.com'],
- permission: ['admin.security'],
- },
- state: false,
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Office 365 App Credentials',
- name: 'auth_microsoft_office365_credentials',
- area: 'Security::ThirdPartyAuthentication::Office365',
- description: 'Enables user authentication via Office 365.',
- options: {
- form: [
- {
- display: 'App ID',
- null: true,
- name: 'app_id',
- tag: 'input',
- },
- {
- display: 'App Secret',
- null: true,
- name: 'app_secret',
- tag: 'input',
- },
- ],
- },
- state: {},
- preferences: {
- permission: ['admin.security'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Authentication via %s',
- name: 'auth_oauth2',
- area: 'Security::ThirdPartyAuthentication',
- description: 'Enables user authentication via generic OAuth2. Register your app first.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'auth_oauth2',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- preferences: {
- controller: 'SettingsAreaSwitch',
- sub: ['auth_oauth2_credentials'],
- title_i18n: ['Generic OAuth2'],
- permission: ['admin.security'],
- },
- state: false,
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Generic OAuth2 App Credentials',
- name: 'auth_oauth2_credentials',
- area: 'Security::ThirdPartyAuthentication::GenericOAuth',
- description: 'Enables user authentication via generic OAuth2.',
- options: {
- form: [
- {
- display: 'Name',
- null: true,
- name: 'name',
- tag: 'input',
- placeholder: 'Some Provider Name',
- },
- {
- display: 'App ID',
- null: true,
- name: 'app_id',
- tag: 'input',
- },
- {
- display: 'App Secret',
- null: true,
- name: 'app_secret',
- tag: 'input',
- },
- {
- display: 'Site',
- null: true,
- name: 'site',
- tag: 'input',
- placeholder: 'https://oauth.YOURDOMAIN.com',
- },
- {
- display: 'authorize_url',
- null: true,
- name: 'authorize_url',
- tag: 'input',
- placeholder: '/oauth/authorize',
- },
- {
- display: 'token_url',
- null: true,
- name: 'token_url',
- tag: 'input',
- placeholder: '/oauth/token',
- },
- ],
- },
- state: {},
- preferences: {
- permission: ['admin.security'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Authentication via %s',
- name: 'auth_weibo',
- area: 'Security::ThirdPartyAuthentication',
- description: 'Enables user authentication via %s. Register your app first at [%s](%s).',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'auth_weibo',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- preferences: {
- controller: 'SettingsAreaSwitch',
- sub: ['auth_weibo_credentials'],
- title_i18n: ['Weibo'],
- description_i18n: ['Sina Weibo', 'Sina Weibo Open Protal', 'http://open.weibo.com'],
- permission: ['admin.security'],
- },
- state: false,
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Weibo App Credentials',
- name: 'auth_weibo_credentials',
- area: 'Security::ThirdPartyAuthentication::Weibo',
- description: 'Enables user authentication via Weibo.',
- options: {
- form: [
- {
- display: 'App ID',
- null: true,
- name: 'client_id',
- tag: 'input',
- },
- {
- display: 'App Secret',
- null: true,
- name: 'client_secret',
- tag: 'input',
- },
- ],
- },
- state: {},
- preferences: {
- permission: ['admin.security'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Minimum length',
- name: 'password_min_size',
- area: 'Security::Password',
- description: 'Password needs to have at least a minimal number of characters.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'password_min_size',
- tag: 'select',
- options: {
- 4 => ' 4',
- 5 => ' 5',
- 6 => ' 6',
- 7 => ' 7',
- 8 => ' 8',
- 9 => ' 9',
- 10 => '10',
- 11 => '11',
- 12 => '12',
- 13 => '13',
- 14 => '14',
- 15 => '15',
- 16 => '16',
- 17 => '17',
- 18 => '18',
- 19 => '19',
- 20 => '20',
- },
- },
- ],
- },
- state: 6,
- preferences: {
- permission: ['admin.security'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: '2 lower and 2 upper characters',
- name: 'password_min_2_lower_2_upper_characters',
- area: 'Security::Password',
- description: 'Password needs to contain 2 lower and 2 upper characters.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'password_min_2_lower_2_upper_characters',
- tag: 'select',
- options: {
- 1 => 'yes',
- 0 => 'no',
- },
- },
- ],
- },
- state: 0,
- preferences: {
- permission: ['admin.security'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Digit required',
- name: 'password_need_digit',
- area: 'Security::Password',
- description: 'Password needs to contain at least one digit.',
- options: {
- form: [
- {
- display: 'Needed',
- null: true,
- name: 'password_need_digit',
- tag: 'select',
- options: {
- 1 => 'yes',
- 0 => 'no',
- },
- },
- ],
- },
- state: 1,
- preferences: {
- permission: ['admin.security'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Maximum failed logins',
- name: 'password_max_login_failed',
- area: 'Security::Password',
- description: 'Number of failed logins after account will be deactivated.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'password_max_login_failed',
- tag: 'select',
- options: {
- 4 => ' 4',
- 5 => ' 5',
- 6 => ' 6',
- 7 => ' 7',
- 8 => ' 8',
- 9 => ' 9',
- 10 => '10',
- 11 => '11',
- 13 => '13',
- 14 => '14',
- 15 => '15',
- 16 => '16',
- 17 => '17',
- 18 => '18',
- 19 => '19',
- 20 => '20',
- },
- },
- ],
- },
- state: 10,
- preferences: {
- permission: ['admin.security'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Ticket Hook',
- name: 'ticket_hook',
- area: 'Ticket::Base',
- description: 'The identifier for a ticket, e. g. Ticket#, Call#, MyTicket#. The default is Ticket#.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'ticket_hook',
- tag: 'input',
- },
- ],
- },
- preferences: {
- render: true,
- placeholder: true,
- authentication: true,
- permission: ['admin.ticket'],
- },
- state: 'Ticket#',
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Ticket Hook Divider',
- name: 'ticket_hook_divider',
- area: 'Ticket::Base::Shadow',
- description: 'The divider between TicketHook and ticket number. E. g. \': \'.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'ticket_hook_divider',
- tag: 'input',
- },
- ],
- },
- state: '',
- preferences: {
- permission: ['admin.ticket'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Ticket Hook Position',
- name: 'ticket_hook_position',
- area: 'Ticket::Base',
- description: "The format of the subject.
- * **Right** means **Some Subject [Ticket#12345]**
- * **Left** means **[Ticket#12345] Some Subject**
- * **None** means **Some Subject** (without ticket number). In the last case you should enable *postmaster_follow_up_search_in* to recognize follow-ups based on email headers and/or body.",
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'ticket_hook_position',
- tag: 'select',
- translate: true,
- options: {
- 'left' => 'left',
- 'right' => 'right',
- 'none' => 'none',
- },
- },
- ],
- },
- state: 'right',
- preferences: {
- controller: 'SettingsAreaTicketHookPosition',
- permission: ['admin.ticket'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Ticket Number Format',
- name: 'ticket_number',
- area: 'Ticket::Number',
- description: "Selects the ticket number generator module.
- * **Increment** increments the ticket number, the SystemID and the counter are used with SystemID.Counter format (e.g. 1010138, 1010139).
- * With **Date** the ticket numbers will be generated by the current date, the SystemID and the counter. The format looks like Year.Month.Day.SystemID.counter (e.g. 201206231010138, 201206231010139).",
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'ticket_number',
- tag: 'select',
- translate: true,
- options: {
- 'Ticket::Number::Increment' => 'Increment (SystemID.Counter)',
- 'Ticket::Number::Date' => 'Date (Year.Month.Day.SystemID.Counter)',
- },
- },
- ],
- },
- state: 'Ticket::Number::Increment',
- preferences: {
- settings_included: %w[ticket_number_increment ticket_number_date],
- controller: 'SettingsAreaTicketNumber',
- permission: ['admin.ticket'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Ticket Number Increment',
- name: 'ticket_number_increment',
- area: 'Ticket::Number',
- description: '-',
- options: {
- form: [
- {
- display: 'Checksum',
- null: true,
- name: 'checksum',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- {
- display: 'Min. size of number',
- null: true,
- name: 'min_size',
- tag: 'select',
- options: {
- 1 => ' 1',
- 2 => ' 2',
- 3 => ' 3',
- 4 => ' 4',
- 5 => ' 5',
- 6 => ' 6',
- 7 => ' 7',
- 8 => ' 8',
- 9 => ' 9',
- 10 => '10',
- 11 => '11',
- 12 => '12',
- 13 => '13',
- 14 => '14',
- 15 => '15',
- 16 => '16',
- 17 => '17',
- 18 => '18',
- 19 => '19',
- 20 => '20',
- },
- },
- ],
- },
- state: {
- checksum: false,
- min_size: 5,
- },
- preferences: {
- permission: ['admin.ticket'],
- hidden: true,
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Ticket Number Increment Date',
- name: 'ticket_number_date',
- area: 'Ticket::Number',
- description: '-',
- options: {
- form: [
- {
- display: 'Checksum',
- null: true,
- name: 'checksum',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: {
- checksum: false
- },
- preferences: {
- permission: ['admin.ticket'],
- hidden: true,
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Ticket Number ignore system_id',
- name: 'ticket_number_ignore_system_id',
- area: 'Ticket::Core',
- description: '-',
- options: {
- form: [
- {
- display: 'Ignore system_id',
- null: true,
- name: 'ticket_number_ignore_system_id',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: {
- ticket_number_ignore_system_id: false
- },
- preferences: {
- permission: ['admin.ticket'],
- hidden: true,
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Enable Ticket creation',
- name: 'customer_ticket_create',
- area: 'CustomerWeb::Base',
- description: 'Defines if a customer can create tickets via the web interface.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'customer_ticket_create',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: true,
- preferences: {
- authentication: true,
- permission: ['admin.channel_web'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Group selection for Ticket creation',
- name: 'customer_ticket_create_group_ids',
- area: 'CustomerWeb::Base',
- description: 'Defines groups for which a customer can create tickets via web interface. "-" means all groups are available.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'group_ids',
- tag: 'select',
- multiple: true,
- nulloption: true,
- relation: 'Group',
- },
- ],
- },
- state: '',
- preferences: {
- authentication: true,
- permission: ['admin.channel_web'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Enable Ticket creation',
- name: 'form_ticket_create',
- area: 'Form::Base',
- description: 'Defines if tickets can be created via web form.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'form_ticket_create',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- preferences: {
- permission: ['admin.channel_formular'],
- },
- frontend: false,
- )
- group = Group.where(active: true).first
- if !group
- group = Group.first
- end
- group_id = 1
- if group
- group_id = group.id
- end
- Setting.create_if_not_exists(
- title: 'Group selection for Ticket creation',
- name: 'form_ticket_create_group_id',
- area: 'Form::Base',
- description: 'Defines if group of created tickets via web form.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'form_ticket_create_group_id',
- tag: 'select',
- relation: 'Group',
- },
- ],
- },
- state: group_id,
- preferences: {
- permission: ['admin.channel_formular'],
- },
- frontend: false,
- )
- Setting.create_if_not_exists(
- title: 'Limit tickets by ip per hour',
- name: 'form_ticket_create_by_ip_per_hour',
- area: 'Form::Base',
- description: 'Defines limit of tickets by ip per hour via web form.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'form_ticket_create_by_ip_per_hour',
- tag: 'input',
- },
- ],
- },
- state: 20,
- preferences: {
- permission: ['admin.channel_formular'],
- },
- frontend: false,
- )
- Setting.create_if_not_exists(
- title: 'Limit tickets by ip per day',
- name: 'form_ticket_create_by_ip_per_day',
- area: 'Form::Base',
- description: 'Defines limit of tickets by ip per day via web form.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'form_ticket_create_by_ip_per_day',
- tag: 'input',
- },
- ],
- },
- state: 240,
- preferences: {
- permission: ['admin.channel_formular'],
- },
- frontend: false,
- )
- Setting.create_if_not_exists(
- title: 'Limit tickets per day',
- name: 'form_ticket_create_per_day',
- area: 'Form::Base',
- description: 'Defines limit of tickets per day via web form.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'form_ticket_create_per_day',
- tag: 'input',
- },
- ],
- },
- state: 5000,
- preferences: {
- permission: ['admin.channel_formular'],
- },
- frontend: false,
- )
- Setting.create_if_not_exists(
- title: 'Ticket Subject Size',
- name: 'ticket_subject_size',
- area: 'Email::Base',
- description: 'Max. length of the subject in an email reply.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'ticket_subject_size',
- tag: 'input',
- },
- ],
- },
- state: '110',
- preferences: {
- permission: ['admin.channel_email'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Ticket Subject Reply',
- name: 'ticket_subject_re',
- area: 'Email::Base',
- description: 'The text at the beginning of the subject in an email reply, e. g. RE, AW, or AS.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'ticket_subject_re',
- tag: 'input',
- },
- ],
- },
- state: 'RE',
- preferences: {
- permission: ['admin.channel_email'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Sender Format',
- name: 'ticket_define_email_from',
- area: 'Email::Base',
- description: 'Defines how the From field of emails (sent from answers and email tickets) should look like.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'ticket_define_email_from',
- tag: 'select',
- options: {
- SystemAddressName: 'System Address Display Name',
- AgentNameSystemAddressName: 'Agent Name + FromSeparator + System Address Display Name',
- },
- },
- ],
- },
- state: 'AgentNameSystemAddressName',
- preferences: {
- permission: ['admin.channel_email'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Sender Format Separator',
- name: 'ticket_define_email_from_separator',
- area: 'Email::Base',
- description: 'Defines the separator between the agent\'s real name and the given group email address.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'ticket_define_email_from_separator',
- tag: 'input',
- },
- ],
- },
- state: 'via',
- preferences: {
- permission: ['admin.channel_email'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Maximum Email Size',
- name: 'postmaster_max_size',
- area: 'Email::Base',
- description: 'Maximum size in MB of emails.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'postmaster_max_size',
- tag: 'select',
- options: {
- 1 => ' 1',
- 2 => ' 2',
- 3 => ' 3',
- 4 => ' 4',
- 5 => ' 5',
- 6 => ' 6',
- 7 => ' 7',
- 8 => ' 8',
- 9 => ' 9',
- 10 => ' 10',
- 15 => ' 15',
- 20 => ' 20',
- 25 => ' 25',
- 30 => ' 30',
- 35 => ' 35',
- 40 => ' 40',
- 45 => ' 45',
- 50 => ' 50',
- 60 => ' 60',
- 70 => ' 70',
- 80 => ' 80',
- 90 => ' 90',
- 100 => '100',
- 125 => '125',
- 150 => '150',
- },
- },
- ],
- },
- state: 10,
- preferences: {
- online_service_disable: true,
- permission: ['admin.channel_email'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Additional follow-up detection',
- name: 'postmaster_follow_up_search_in',
- area: 'Email::Base',
- description: 'By default the follow-up check is done via the subject of an email. With this setting you can add more fields for which the follow-up check will be executed.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'postmaster_follow_up_search_in',
- tag: 'checkbox',
- options: {
- 'references' => 'References - Search for follow up also in In-Reply-To or References headers.',
- 'body' => 'Body - Search for follow up also in mail body.',
- 'attachment' => 'Attachment - Search for follow up also in attachments.',
- },
- },
- ],
- },
- state: [],
- preferences: {
- permission: ['admin.channel_email'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Sender based on Reply-To header',
- name: 'postmaster_sender_based_on_reply_to',
- area: 'Email::Base',
- description: 'Set/overwrite sender/from of email based on reply-to header. Useful to set correct customer if email is received from a third party system on behalf of a customer.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'postmaster_sender_based_on_reply_to',
- tag: 'select',
- options: {
- '' => '-',
- 'as_sender_of_email' => 'Take reply-to header as sender/from of email.',
- 'as_sender_of_email_use_from_realname' => 'Take reply-to header as sender/from of email and use realname of origin from.',
- },
- },
- ],
- },
- state: [],
- preferences: {
- permission: ['admin.channel_email'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Customer selection based on sender and receiver list',
- name: 'postmaster_sender_is_agent_search_for_customer',
- area: 'Email::Base',
- description: 'If the sender is an agent, set the first user in the recipient list as a customer.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'postmaster_sender_is_agent_search_for_customer',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: true,
- preferences: {
- permission: ['admin.channel_email'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Notification Sender',
- name: 'notification_sender',
- area: 'Email::Base',
- description: 'Defines the sender of email notifications.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'notification_sender',
- tag: 'input',
- },
- ],
- },
- state: 'Notification Master <noreply@#{config.fqdn}>', # rubocop:disable Lint/InterpolationCheck
- preferences: {
- online_service_disable: true,
- permission: ['admin.channel_email'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Block Notifications',
- name: 'send_no_auto_response_reg_exp',
- area: 'Email::Base',
- description: 'If this regex matches, no notification will be sent by the sender.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'send_no_auto_response_reg_exp',
- tag: 'input',
- },
- ],
- },
- state: '(mailer-daemon|postmaster|abuse|root|noreply|noreply.+?|no-reply|no-reply.+?)@.+?',
- preferences: {
- online_service_disable: true,
- permission: ['admin.channel_email'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'API Token Access',
- name: 'api_token_access',
- area: 'API::Base',
- description: 'Enable REST API using tokens (not username/email address and password). Each user needs to create its own access tokens in user profile.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'api_token_access',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: true,
- preferences: {
- permission: ['admin.api'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'API Password Access',
- name: 'api_password_access',
- area: 'API::Base',
- description: 'Enable REST API access using the username/email address and password for the authentication user.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'api_password_access',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: true,
- preferences: {
- permission: ['admin.api'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Monitoring Token',
- name: 'monitoring_token',
- area: 'HealthCheck::Base',
- description: 'Token for monitoring.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'monitoring_token',
- tag: 'input',
- },
- ],
- },
- state: SecureRandom.urlsafe_base64(40),
- preferences: {
- permission: ['admin.monitoring'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Enable Chat',
- name: 'chat',
- area: 'Chat::Base',
- description: 'Enable/disable online chat.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'chat',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- preferences: {
- trigger: ['menu:render', 'chat:rerender'],
- permission: ['admin.channel_chat'],
- },
- state: false,
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Agent idle timeout',
- name: 'chat_agent_idle_timeout',
- area: 'Chat::Extended',
- description: 'Idle timeout in seconds until agent is set offline automatically.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'chat_agent_idle_timeout',
- tag: 'input',
- },
- ],
- },
- state: '120',
- preferences: {
- permission: ['admin.channel_chat'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Defines searchable models.',
- name: 'models_searchable',
- area: 'Models::Base',
- description: 'Defines the searchable models.',
- options: {},
- state: [],
- preferences: {
- authentication: true,
- },
- frontend: true,
- )
- Setting.create_if_not_exists(
- title: 'Default Screen',
- name: 'default_controller',
- area: 'Core',
- description: 'Defines the default screen.',
- options: {},
- state: '#dashboard',
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Elasticsearch Endpoint URL',
- name: 'es_url',
- area: 'SearchIndex::Elasticsearch',
- description: 'Defines endpoint of Elasticsearch.',
- state: '',
- preferences: { online_service_disable: true },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Elasticsearch Endpoint User',
- name: 'es_user',
- area: 'SearchIndex::Elasticsearch',
- description: 'Defines HTTP basic auth user of Elasticsearch.',
- state: '',
- preferences: { online_service_disable: true },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Elasticsearch Endpoint Password',
- name: 'es_password',
- area: 'SearchIndex::Elasticsearch',
- description: 'Defines HTTP basic auth password of Elasticsearch.',
- state: '',
- preferences: { online_service_disable: true },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Elasticsearch Endpoint Index',
- name: 'es_index',
- area: 'SearchIndex::Elasticsearch',
- description: 'Defines Elasticsearch index name.',
- state: 'zammad',
- preferences: { online_service_disable: true },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Elasticsearch Attachment Extensions',
- name: 'es_attachment_ignore',
- area: 'SearchIndex::Elasticsearch',
- description: 'Defines attachment extensions which will be ignored by Elasticsearch.',
- state: [ '.png', '.jpg', '.jpeg', '.mpeg', '.mpg', '.mov', '.bin', '.exe', '.box', '.mbox' ],
- preferences: { online_service_disable: true },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Elasticsearch Attachment Size',
- name: 'es_attachment_max_size_in_mb',
- area: 'SearchIndex::Elasticsearch',
- description: 'Define max. attachment size for Elasticsearch.',
- state: 50,
- preferences: { online_service_disable: true },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Elasticsearch Pipeline Name',
- name: 'es_pipeline',
- area: 'SearchIndex::Elasticsearch',
- description: 'Define pipeline name for Elasticsearch.',
- state: '',
- preferences: { online_service_disable: true },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Import Mode',
- name: 'import_mode',
- area: 'Import::Base',
- description: 'Puts Zammad into import mode (disables some triggers).',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'import_mode',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Import Backend',
- name: 'import_backend',
- area: 'Import::Base::Internal',
- description: 'Set backend which is being used for import.',
- options: {},
- state: '',
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Ignore Escalation/SLA Information',
- name: 'import_ignore_sla',
- area: 'Import::Base',
- description: 'Ignore escalation/SLA information for import.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'import_ignore_sla',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Import Endpoint',
- name: 'import_otrs_endpoint',
- area: 'Import::OTRS',
- description: 'Defines OTRS endpoint to import users, tickets, states and articles.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'import_otrs_endpoint',
- tag: 'input',
- },
- ],
- },
- state: 'http://otrs_host/otrs',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Import Key',
- name: 'import_otrs_endpoint_key',
- area: 'Import::OTRS',
- description: 'Defines OTRS endpoint authentication key.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'import_otrs_endpoint_key',
- tag: 'input',
- },
- ],
- },
- state: '',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Import User for HTTP basic authentication',
- name: 'import_otrs_user',
- area: 'Import::OTRS',
- description: 'Defines HTTP basic authentication user (only if OTRS is protected via HTTP basic auth).',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'import_otrs_user',
- tag: 'input',
- },
- ],
- },
- state: '',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Import Password for http basic authentication',
- name: 'import_otrs_password',
- area: 'Import::OTRS',
- description: 'Defines http basic authentication password (only if OTRS is protected via http basic auth).',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'import_otrs_password',
- tag: 'input',
- },
- ],
- },
- state: '',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Import Endpoint',
- name: 'import_zendesk_endpoint',
- area: 'Import::Zendesk',
- description: 'Defines Zendesk endpoint to import users, ticket, states and articles.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'import_zendesk_endpoint',
- tag: 'input',
- },
- ],
- },
- state: 'https://yours.zendesk.com/api/v2',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Import Key for requesting the Zendesk API',
- name: 'import_zendesk_endpoint_key',
- area: 'Import::Zendesk',
- description: 'Defines Zendesk endpoint authentication key.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'import_zendesk_endpoint_key',
- tag: 'input',
- },
- ],
- },
- state: '',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Import User for requesting the Zendesk API',
- name: 'import_zendesk_endpoint_username',
- area: 'Import::Zendesk',
- description: 'Defines Zendesk endpoint authentication user.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'import_zendesk_endpoint_username',
- tag: 'input',
- },
- ],
- },
- state: '',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Import Backends',
- name: 'import_backends',
- area: 'Import',
- description: 'A list of active import backends that get scheduled automatically.',
- options: {},
- state: ['Import::Ldap', 'Import::Exchange'],
- preferences: {
- permission: ['admin'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Time Accounting',
- name: 'time_accounting',
- area: 'Web::Base',
- description: 'Enable time accounting.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'time_accounting',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- preferences: {
- authentication: true,
- permission: ['admin.time_accounting'],
- },
- state: false,
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Time Accounting Selector',
- name: 'time_accounting_selector',
- area: 'Web::Base',
- description: 'Enable time accounting for these tickets.',
- options: {
- form: [
- {},
- ],
- },
- preferences: {
- authentication: true,
- permission: ['admin.time_accounting'],
- },
- state: {},
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'New Tags',
- name: 'tag_new',
- area: 'Web::Base',
- description: 'Allow users to create new tags.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'tag_new',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- preferences: {
- authentication: true,
- permission: ['admin.tag'],
- },
- state: true,
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Default calendar tickets subscriptions',
- name: 'defaults_calendar_subscriptions_tickets',
- area: 'Defaults::CalendarSubscriptions',
- description: 'Defines the default calendar tickets subscription settings.',
- options: {},
- state: {
- escalation: {
- own: true,
- not_assigned: false,
- },
- new_open: {
- own: true,
- not_assigned: false,
- },
- pending: {
- own: true,
- not_assigned: false,
- }
- },
- preferences: {
- authentication: true,
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Defines translator identifier.',
- name: 'translator_key',
- area: 'i18n::translator_key',
- description: 'Defines the translator identifier for contributions.',
- options: {},
- state: '',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines postmaster filter.',
- name: '0010_postmaster_filter_trusted',
- area: 'Postmaster::PreFilter',
- description: 'Defines postmaster filter to remove X-Zammad headers from not trusted sources.',
- options: {},
- state: 'Channel::Filter::Trusted',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines postmaster filter.',
- name: '0011_postmaster_sender_based_on_reply_to',
- area: 'Postmaster::PreFilter',
- description: 'Defines postmaster filter to set the sender/from of emails based on reply-to header.',
- options: {},
- state: 'Channel::Filter::ReplyToBasedSender',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines postmaster filter.',
- name: '0012_postmaster_filter_sender_is_system_address',
- area: 'Postmaster::PreFilter',
- description: 'Defines postmaster filter to check if email has been created by Zammad itself and will set the article sender.',
- options: {},
- state: 'Channel::Filter::SenderIsSystemAddress',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines postmaster filter.',
- name: '0014_postmaster_filter_own_notification_loop_detection',
- area: 'Postmaster::PreFilter',
- description: 'Define postmaster filter to check if email is a own created notification email, then ignore it to prevent email loops.',
- options: {},
- state: 'Channel::Filter::OwnNotificationLoopDetection',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines postmaster filter.',
- name: '0015_postmaster_filter_identify_sender',
- area: 'Postmaster::PreFilter',
- description: 'Defines postmaster filter to identify sender user.',
- options: {},
- state: 'Channel::Filter::IdentifySender',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines postmaster filter.',
- name: '0020_postmaster_filter_auto_response_check',
- area: 'Postmaster::PreFilter',
- description: 'Defines postmaster filter to identify auto responses to prevent auto replies from Zammad.',
- options: {},
- state: 'Channel::Filter::AutoResponseCheck',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines postmaster filter.',
- name: '0030_postmaster_filter_out_of_office_check',
- area: 'Postmaster::PreFilter',
- description: 'Defines postmaster filter to identify out-of-office emails for follow-up detection and keeping current ticket state.',
- options: {},
- state: 'Channel::Filter::OutOfOfficeCheck',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines postmaster filter.',
- name: '0100_postmaster_filter_follow_up_check',
- area: 'Postmaster::PreFilter',
- description: 'Defines postmaster filter to identify follow-ups (based on admin settings).',
- options: {},
- state: 'Channel::Filter::FollowUpCheck',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines postmaster filter.',
- name: '0110_postmaster_filter_follow_up_merged',
- area: 'Postmaster::PreFilter',
- description: 'Defines postmaster filter to identify follow-up ticket for merged tickets.',
- options: {},
- state: 'Channel::Filter::FollowUpMerged',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines postmaster filter.',
- name: '0200_postmaster_filter_follow_up_possible_check',
- area: 'Postmaster::PreFilter',
- description: 'Define postmaster filter to check if follow ups get created (based on admin settings).',
- options: {},
- state: 'Channel::Filter::FollowUpPossibleCheck',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines postmaster filter.',
- name: '0900_postmaster_filter_bounce_follow_up_check',
- area: 'Postmaster::PreFilter',
- description: 'Defines postmaster filter to identify postmaster bounced - to handle it as follow-up of the original ticket.',
- options: {},
- state: 'Channel::Filter::BounceFollowUpCheck',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines postmaster filter.',
- name: '0950_postmaster_filter_bounce_delivery_permanent_failed',
- area: 'Postmaster::PreFilter',
- description: 'Defines postmaster filter to identify postmaster bounced - disable sending notification on permanent deleivery failed.',
- options: {},
- state: 'Channel::Filter::BounceDeliveryPermanentFailed',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines postmaster filter.',
- name: '1000_postmaster_filter_database_check',
- area: 'Postmaster::PreFilter',
- description: 'Defines postmaster filter for filters managed via admin interface.',
- options: {},
- state: 'Channel::Filter::Database',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines postmaster filter.',
- name: '5000_postmaster_filter_icinga',
- area: 'Postmaster::PreFilter',
- description: 'Defines postmaster filter to manage Icinga (http://www.icinga.org) emails.',
- options: {},
- state: 'Channel::Filter::Icinga',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines postmaster filter.',
- name: '5100_postmaster_filter_nagios',
- area: 'Postmaster::PreFilter',
- description: 'Defines postmaster filter to manage Nagios (http://www.nagios.org) emails.',
- options: {},
- state: 'Channel::Filter::Nagios',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines postmaster filter.',
- name: '5300_postmaster_filter_monit',
- area: 'Postmaster::PreFilter',
- description: 'Defines postmaster filter to manage Monit (https://mmonit.com/monit/) emails.',
- options: {},
- state: 'Channel::Filter::Monit',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Icinga integration',
- name: 'icinga_integration',
- area: 'Integration::Switch',
- description: 'Defines if Icinga (http://www.icinga.org) is enabled or not.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'icinga_integration',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- preferences: {
- prio: 1,
- permission: ['admin.integration'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Sender',
- name: 'icinga_sender',
- area: 'Integration::Icinga',
- description: 'Defines the sender email address of Icinga emails.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'icinga_sender',
- tag: 'input',
- placeholder: 'icinga@monitoring.example.com',
- },
- ],
- },
- state: 'icinga@monitoring.example.com',
- preferences: {
- prio: 2,
- permission: ['admin.integration'],
- },
- frontend: false,
- )
- Setting.create_if_not_exists(
- title: 'Auto close',
- name: 'icinga_auto_close',
- area: 'Integration::Icinga',
- description: 'Defines if tickets should be closed if service is recovered.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'icinga_auto_close',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: true,
- preferences: {
- prio: 3,
- permission: ['admin.integration'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Auto close state',
- name: 'icinga_auto_close_state_id',
- area: 'Integration::Icinga',
- description: 'Defines the state of auto closed tickets.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'icinga_auto_close_state_id',
- tag: 'select',
- relation: 'TicketState',
- },
- ],
- },
- state: 4,
- preferences: {
- prio: 4,
- permission: ['admin.integration'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Nagios integration',
- name: 'nagios_integration',
- area: 'Integration::Switch',
- description: 'Defines if Nagios (http://www.nagios.org) is enabled or not.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'nagios_integration',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- preferences: {
- prio: 1,
- permission: ['admin.integration'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Sender',
- name: 'nagios_sender',
- area: 'Integration::Nagios',
- description: 'Defines the sender email address of Nagios emails.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'nagios_sender',
- tag: 'input',
- placeholder: 'nagios@monitoring.example.com',
- },
- ],
- },
- state: 'nagios@monitoring.example.com',
- preferences: {
- prio: 2,
- permission: ['admin.integration'],
- },
- frontend: false,
- )
- Setting.create_if_not_exists(
- title: 'Auto close',
- name: 'nagios_auto_close',
- area: 'Integration::Nagios',
- description: 'Defines if tickets should be closed if service is recovered.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'nagios_auto_close',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: true,
- preferences: {
- prio: 3,
- permission: ['admin.integration'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Auto close state',
- name: 'nagios_auto_close_state_id',
- area: 'Integration::Nagios',
- description: 'Defines the state of auto closed tickets.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'nagios_auto_close_state_id',
- tag: 'select',
- relation: 'TicketState',
- },
- ],
- },
- state: 4,
- preferences: {
- prio: 4,
- permission: ['admin.integration'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Check_MK integration',
- name: 'check_mk_integration',
- area: 'Integration::Switch',
- description: 'Defines if Check_MK (http://mathias-kettner.com/check_mk.html) is enabled or not.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'check_mk_integration',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- preferences: {
- prio: 1,
- permission: ['admin.integration'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Group',
- name: 'check_mk_group_id',
- area: 'Integration::CheckMK',
- description: 'Defines the group of created tickets.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'check_mk_group_id',
- tag: 'select',
- relation: 'Group',
- },
- ],
- },
- state: 1,
- preferences: {
- prio: 2,
- permission: ['admin.integration'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Auto close',
- name: 'check_mk_auto_close',
- area: 'Integration::CheckMK',
- description: 'Defines if tickets should be closed if service is recovered.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'check_mk_auto_close',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: true,
- preferences: {
- prio: 3,
- permission: ['admin.integration'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Auto close state',
- name: 'check_mk_auto_close_state_id',
- area: 'Integration::CheckMK',
- description: 'Defines the state of auto closed tickets.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'check_mk_auto_close_state_id',
- tag: 'select',
- relation: 'TicketState',
- },
- ],
- },
- state: 4,
- preferences: {
- prio: 4,
- permission: ['admin.integration'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Check_MK tolen',
- name: 'check_mk_token',
- area: 'Core',
- description: 'Defines the Check_MK token for allowing updates.',
- options: {},
- state: SecureRandom.hex(16),
- preferences: {
- permission: ['admin.integration'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Monit integration',
- name: 'monit_integration',
- area: 'Integration::Switch',
- description: 'Defines if Monit (https://mmonit.com/monit/) is enabled or not.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'monit_integration',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- preferences: {
- prio: 1,
- permission: ['admin.integration'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Sender',
- name: 'monit_sender',
- area: 'Integration::Monit',
- description: 'Defines the sender email address of the service emails.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'monit_sender',
- tag: 'input',
- placeholder: 'monit@monitoring.example.com',
- },
- ],
- },
- state: 'monit@monitoring.example.com',
- preferences: {
- prio: 2,
- permission: ['admin.integration'],
- },
- frontend: false,
- )
- Setting.create_if_not_exists(
- title: 'Auto close',
- name: 'monit_auto_close',
- area: 'Integration::Monit',
- description: 'Defines if tickets should be closed if service is recovered.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'monit_auto_close',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- translate: true,
- },
- ],
- },
- state: true,
- preferences: {
- prio: 3,
- permission: ['admin.integration'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Auto close state',
- name: 'monit_auto_close_state_id',
- area: 'Integration::Monit',
- description: 'Defines the state of auto closed tickets.',
- options: {
- form: [
- {
- display: '',
- null: false,
- name: 'monit_auto_close_state_id',
- tag: 'select',
- relation: 'TicketState',
- translate: true,
- },
- ],
- },
- state: 4,
- preferences: {
- prio: 4,
- permission: ['admin.integration'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'LDAP integration',
- name: 'ldap_integration',
- area: 'Integration::Switch',
- description: 'Defines if LDAP is enabled or not.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'ldap_integration',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- preferences: {
- prio: 1,
- authentication: true,
- permission: ['admin.integration'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'Exchange config',
- name: 'exchange_config',
- area: 'Integration::Exchange',
- description: 'Defines the Exchange config.',
- options: {},
- state: {},
- preferences: {
- prio: 2,
- permission: ['admin.integration'],
- },
- frontend: false,
- )
- Setting.create_if_not_exists(
- title: 'Exchange integration',
- name: 'exchange_integration',
- area: 'Integration::Switch',
- description: 'Defines if Exchange is enabled or not.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'exchange_integration',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- preferences: {
- prio: 1,
- authentication: true,
- permission: ['admin.integration'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'LDAP config',
- name: 'ldap_config',
- area: 'Integration::LDAP',
- description: 'Defines the LDAP config.',
- options: {},
- state: {},
- preferences: {
- prio: 2,
- permission: ['admin.integration'],
- },
- frontend: false,
- )
- Setting.create_if_not_exists(
- title: 'i-doit integration',
- name: 'idoit_integration',
- area: 'Integration::Switch',
- description: 'Defines if i-doit (http://www.i-doit) is enabled or not.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'idoit_integration',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- preferences: {
- prio: 1,
- authentication: true,
- permission: ['admin.integration'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'i-doit config',
- name: 'idoit_config',
- area: 'Integration::Idoit',
- description: 'Defines the i-doit config.',
- options: {},
- state: {},
- preferences: {
- prio: 2,
- permission: ['admin.integration'],
- },
- frontend: false,
- )
- Setting.create_if_not_exists(
- title: 'Defines sync transaction backend.',
- name: '0100_trigger',
- area: 'Transaction::Backend::Sync',
- description: 'Defines the transaction backend to execute triggers.',
- options: {},
- state: 'Transaction::Trigger',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines transaction backend.',
- name: '0100_notification',
- area: 'Transaction::Backend::Async',
- description: 'Defines the transaction backend to send agent notifications.',
- options: {},
- state: 'Transaction::Notification',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines transaction backend.',
- name: '1000_signature_detection',
- area: 'Transaction::Backend::Async',
- description: 'Defines the transaction backend to detect customer signatures in emails.',
- options: {},
- state: 'Transaction::SignatureDetection',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines transaction backend.',
- name: '6000_slack_webhook',
- area: 'Transaction::Backend::Async',
- description: 'Defines the transaction backend which posts messages to Slack (http://www.slack.com).',
- options: {},
- state: 'Transaction::Slack',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Slack integration',
- name: 'slack_integration',
- area: 'Integration::Switch',
- description: 'Defines if Slack (http://www.slack.org) is enabled or not.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'slack_integration',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- preferences: {
- prio: 1,
- permission: ['admin.integration'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Slack config',
- name: 'slack_config',
- area: 'Integration::Slack',
- description: 'Defines the slack config.',
- options: {},
- state: {
- items: []
- },
- preferences: {
- prio: 2,
- permission: ['admin.integration'],
- },
- frontend: false,
- )
- Setting.create_if_not_exists(
- title: 'sipgate.io integration',
- name: 'sipgate_integration',
- area: 'Integration::Switch',
- description: 'Defines if sipgate.io (http://www.sipgate.io) is enabled or not.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'sipgate_integration',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- preferences: {
- prio: 1,
- trigger: ['menu:render', 'cti:reload'],
- authentication: true,
- permission: ['admin.integration'],
- },
- frontend: true
- )
- Setting.create_if_not_exists(
- title: 'sipgate.io config',
- name: 'sipgate_config',
- area: 'Integration::Sipgate',
- description: 'Defines the sipgate.io config.',
- options: {},
- state: {},
- preferences: {
- prio: 2,
- permission: ['admin.integration'],
- },
- frontend: false,
- )
- Setting.create_if_not_exists(
- title: 'Clearbit integration',
- name: 'clearbit_integration',
- area: 'Integration::Switch',
- description: 'Defines if Clearbit (http://www.clearbit.com) is enabled or not.',
- options: {
- form: [
- {
- display: '',
- null: true,
- name: 'clearbit_integration',
- tag: 'boolean',
- options: {
- true => 'yes',
- false => 'no',
- },
- },
- ],
- },
- state: false,
- preferences: {
- prio: 1,
- permission: ['admin.integration'],
- },
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Clearbit config',
- name: 'clearbit_config',
- area: 'Integration::Clearbit',
- description: 'Defines the Clearbit config.',
- options: {},
- state: {},
- frontend: false,
- preferences: {
- prio: 2,
- permission: ['admin.integration'],
- },
- )
- Setting.create_if_not_exists(
- title: 'Defines transaction backend.',
- name: '9000_clearbit_enrichment',
- area: 'Transaction::Backend::Async',
- description: 'Defines the transaction backend which will enrich customer and organization information from Clearbit (http://www.clearbit.com).',
- options: {},
- state: 'Transaction::ClearbitEnrichment',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines transaction backend.',
- name: '9100_cti_caller_id_detection',
- area: 'Transaction::Backend::Async',
- description: 'Defines the transaction backend which detects caller IDs in objects and store them for CTI lookups.',
- options: {},
- state: 'Transaction::CtiCallerIdDetection',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines transaction backend.',
- name: '9200_karma',
- area: 'Transaction::Backend::Async',
- description: 'Defines the transaction backend which creates the karma score.',
- options: {},
- state: 'Transaction::Karma',
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Defines karma levels.',
- name: 'karma_levels',
- area: 'Core::Karma',
- description: 'Defines the karma levels.',
- options: {},
- state: [
- {
- name: 'Beginner',
- start: 0,
- end: 499,
- },
- {
- name: 'Newbie',
- start: 500,
- end: 1999,
- },
- {
- name: 'Intermediate',
- start: 2000,
- end: 4999,
- },
- {
- name: 'Professional',
- start: 5000,
- end: 6999,
- },
- {
- name: 'Expert',
- start: 7000,
- end: 8999,
- },
- {
- name: 'Master',
- start: 9000,
- end: 18_999,
- },
- {
- name: 'Evangelist',
- start: 19_000,
- end: 45_999,
- },
- {
- name: 'Hero',
- start: 50_000,
- end: nil,
- },
- ],
- frontend: false
- )
- Setting.create_if_not_exists(
- title: 'Set limit of agents',
- name: 'system_agent_limit',
- area: 'Core::Online',
- description: 'Defines the limit of the agents.',
- options: {},
- state: false,
- preferences: { online_service_disable: true },
- frontend: false
- )
|