gitextract_lz5v3in0/ ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── app/ │ └── views/ │ ├── _issue_edit.erb │ └── _issue_history.erb ├── config/ │ └── locales/ │ ├── de.yml │ ├── en.yml │ ├── es.yml │ ├── it.yml │ ├── ja.yml │ ├── pl.yml │ ├── ru.yml │ ├── tr.yml │ └── zh.yml ├── db/ │ └── migrate/ │ ├── 001_create_custom_owner_email_field.rb │ ├── 002_create_custom_fields_for_reply.rb │ ├── 003_create_custom_field_for_sender_email.rb │ ├── 004_create_custom_field_for_send_to_owner_default.rb │ ├── 005_add_treat_as_supportclient_to_anonymous.rb │ ├── 006_append_footer_to_first_reply.rb │ ├── 007_create_custom_copy_to_field.rb │ ├── 008_create_custom_field_cc_handling.rb │ ├── 009_create_custom_field_for_reopen_closed_issues_by_email.rb │ └── 010_create_custom_field_for_reply_separator.rb ├── init.rb ├── lib/ │ ├── helpdesk_hooks.rb │ ├── helpdesk_mailer.rb │ ├── macro_expander.rb │ ├── redmine_helpdesk/ │ │ ├── journal_patch.rb │ │ ├── mail_handler_patch.rb │ │ └── mailer_patch.rb │ └── tasks/ │ ├── local-db.rake │ ├── plugin_ci.rake │ └── redmine.rake └── test/ ├── confs/ │ ├── database_mysql.yml │ ├── database_postgres.yml │ ├── database_postgres_ext.yml │ └── database_sqlite.yml ├── fixtures/ │ ├── 2.6/ │ │ ├── attachments.yml │ │ ├── custom_fields.yml │ │ ├── custom_fields_projects.yml │ │ ├── custom_fields_trackers.yml │ │ ├── custom_values.yml │ │ ├── enabled_modules.yml │ │ ├── enumerations.yml │ │ ├── issue_statuses.yml │ │ ├── issues.yml │ │ ├── journal_details.yml │ │ ├── journals.yml │ │ ├── member_roles.yml │ │ ├── members.yml │ │ ├── projects.yml │ │ ├── projects_trackers.yml │ │ ├── roles.yml │ │ ├── trackers.yml │ │ └── users.yml │ ├── 3.0/ │ │ ├── attachments.yml │ │ ├── custom_fields.yml │ │ ├── custom_fields_projects.yml │ │ ├── custom_fields_trackers.yml │ │ ├── custom_values.yml │ │ ├── email_addresses.yml │ │ ├── enabled_modules.yml │ │ ├── enumerations.yml │ │ ├── issue_statuses.yml │ │ ├── issues.yml │ │ ├── journal_details.yml │ │ ├── journals.yml │ │ ├── member_roles.yml │ │ ├── members.yml │ │ ├── projects.yml │ │ ├── projects_trackers.yml │ │ ├── roles.yml │ │ ├── trackers.yml │ │ └── users.yml │ ├── files/ │ │ └── 2006/ │ │ └── 07/ │ │ └── 060719210727_source.rb │ └── mail_handler/ │ ├── ticket_by_unknown_user.eml │ ├── ticket_by_unknown_user_with_cc.eml │ ├── ticket_by_user_1.eml │ ├── ticket_by_user_2.eml │ ├── ticket_reply.eml │ ├── ticket_with_attachment.eml │ └── ticket_with_attributes.eml ├── functional/ │ └── issues_controller_with_helpdesk_test.rb ├── test_helper.rb └── unit/ ├── helpdesk_mailer_test.rb ├── journal_patch_test.rb ├── macro_expander_test.rb └── mail_handler_patch_test.rb