summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add possibility to also drop preselected CcHEADv1.0.3masterAlexander Sulfrian2016-05-246-31/+58
|
* Drop support for old otrs frameworkv1.0.2Alexander Sulfrian2016-05-241-2/+1
|
* Move configuration sectionAlexander Sulfrian2016-05-241-1/+1
|
* Remove preselected To with PostTemplateFilterAlexander Sulfrian2016-05-241-33/+19
| | | | The preselected To is now removed by dropping the javascript block.
* Change PreFilter to PostFilterAlexander Sulfrian2016-05-243-15/+23
| | | | PreFilter are removed in otrs-5.0.
* Change path for templates (5.0)Alexander Sulfrian2016-05-243-4/+4
|
* AdminModules cannot use the OM for Dependency handlingAlexander Sulfrian2016-05-242-139/+132
|
* Config: Fix ModuleAdmin packageAlexander Sulfrian2016-05-241-2/+2
|
* Update FrameworkAlexander Sulfrian2015-11-021-1/+2
|
* Change URL to point to the github repo.v1.0.0Alexander Sulfrian2015-01-251-1/+1
|
* Add description.Alexander Sulfrian2015-01-251-2/+2
|
* Add german translation.Alexander Sulfrian2015-01-252-0/+35
|
* Change the default sort order in the admin interface.Alexander Sulfrian2015-01-251-2/+2
|
* Change explantione text.Alexander Sulfrian2015-01-251-1/+1
| | | | We could not only change the To field anymore.
* Set focus to text field.Alexander Sulfrian2015-01-251-0/+5
|
* Generalize the address handling.Alexander Sulfrian2015-01-251-36/+15
|
* Get the objects only on demand from the OM.Alexander Sulfrian2015-01-251-9/+5
|
* TemplateID is called ResponseID in ticket data.Alexander Sulfrian2015-01-251-2/+2
|
* Rename table columns.Alexander Sulfrian2015-01-252-6/+6
| | | | | "to" is a reserved word in postgres and so it could not used as column name.
* Add functionality to prefill Bcc.Alexander Sulfrian2015-01-251-0/+9
|
* Remove the add prefix in AddTo, AddCc and AddBcc.Alexander Sulfrian2015-01-255-37/+37
|
* Add AddCc and AddBcc.Alexander Sulfrian2015-01-255-17/+59
| | | | | AddBcc does not work because the default template does not support to prefill the bcc.
* Rename NewAddress to AddTo.Alexander Sulfrian2015-01-255-17/+17
|
* Remove unused variables.Alexander Sulfrian2015-01-251-4/+0
|
* Remove AddNew.Alexander Sulfrian2015-01-255-35/+15
| | | | | If you do not want to add a new recipient, simply leave the NewAddress field empty.
* Rename RemoveDefault to RemoveTo.Alexander Sulfrian2015-01-255-33/+31
|
* Change header for DefaultRecipient lists.Alexander Sulfrian2015-01-252-3/+9
|
* Fix hash returned by MappingList.Alexander Sulfrian2015-01-251-1/+1
| | | | | The keys in the hash returnged by MappingList should by the IDs of the other element type and not the ID of the mapping.
* YesNo output for boolean fields.Alexander Sulfrian2015-01-252-2/+5
| | | | Display boolean fields with Yes/No value in the overview.
* Fix copy and paste error.Alexander Sulfrian2015-01-241-2/+2
| | | | The admin module was copied from the StandardTemplate module.
* Rename to DefaultRecipient.Alexander Sulfrian2015-01-248-187/+187
| | | | | There are only two hard things in Computer Science: cache invalidation and naming things.
* If no Errors are given, default to an empty hash ref.Alexander Sulfrian2015-01-241-0/+1
| | | | | We dereference the value later, and excpect it to be a hash. so we need set an empty hash ref is the value is undef.
* Do not use '' as default value.Alexander Sulfrian2015-01-241-2/+2
| | | | | | The Yes/No fields need 0 as default value. If we set the value at the beginning to the empty string, we do not have any chance to default it later to 0.
* Do not use a hash for a single value.Alexander Sulfrian2015-01-241-3/+2
|
* Fix field naming.Alexander Sulfrian2015-01-241-8/+8
|
* Remove mandatory flag from input fields.Alexander Sulfrian2015-01-241-22/+4
| | | | | The most input fields should not be mandatory, so the ErrorMessages and the Validate_Required flag should be removed.
* Get the required objects only on demand from the OM.Alexander Sulfrian2015-01-243-74/+110
|
* Fix typos.Alexander Sulfrian2015-01-242-5/+5
|
* Remove quoting in hash reference.Alexander Sulfrian2015-01-241-4/+4
|
* Modules/AdminDefaultTo: Add module to manage DefaultTo entriesAlexander Sulfrian2015-01-224-0/+585
| | | | | Add admin frontend module, template and appropriate config to manage the DefaultTo entries via the admin web interface.
* DefaultTo: Add TitleExistsCheckAlexander Sulfrian2015-01-221-0/+21
| | | | | Add sub TitleExistsCheck to check if another DefaultTo entry exists with the given name.
* DefaultTo: Add comments, create_* and change_* fieldsAlexander Sulfrian2015-01-222-7/+27
| | | | | | Add some more database fields to be more like the default otrs interface and track the creation time and user and the last change time and user. Also now we have a comments field to add an additional description.
* DefaultTo: Remove additional information in Get()Alexander Sulfrian2015-01-211-25/+0
| | | | | | DefaultTo->Get() returned the name and id of the assigned templates. This could be replaced with a call of MappingList( DefautlTo => $ID) and is therefore removed from Get().
* Rename ResponseChangeDefaultTo to DefaultToAlexander Sulfrian2015-01-217-195/+186
|
* Add admin interface for mapping Templates and ResponseChangeDefaultToAlexander Sulfrian2015-01-214-1/+556
|
* ResponseChangeDefaultTo: Change return value of MappingList()Alexander Sulfrian2015-01-212-3/+2
| | | | | | MappingList now returns a HASH with the mapped objects as keys and the corresponding IDs of the mapping as values. The addition level with the MappingID key is removed.
* ResponseChangeDefaultTo: Remove All parameter in MappingList()Alexander Sulfrian2015-01-211-19/+1
|
* FilterElementPre: Fix Hash vs. Hashref usageAlexander Sulfrian2015-01-201-8/+13
|
* ResponseChangeDefaultTo: Fix wrong MappingAlexander Sulfrian2015-01-201-1/+1
| | | | | | | | If you List the mapping, you would expect that the ids of the mappings are the keys of the returned hash and the ids of mapped objects (dependent on the parameters either the response ids or the id of the ResponseChangeDefaultTo objects) are the values. This fixes this assumption.
* ResponseChangeDefaultTo.pm: Fix typo in SQLAlexander Sulfrian2015-01-201-1/+1
|