##// END OF EJS Templates
Don't require category or target version when they are not available (#20583)....
Don't require category or target version when they are not available (#20583). git-svn-id: http://svn.redmine.org/redmine/trunk@14733 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11937:cfc05d310e71
r14351:68620da79ab5
Show More
_mail_handler.html.erb
28 lines | 1.2 KiB | text/plain | TextLexer
/ app / views / settings / _mail_handler.html.erb
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({:action => 'edit', :tab => 'mail_handler'}) do %>
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570
Jean-Philippe Lang
Adds a setting to remove incoming emails body after a delimiter (#4409)....
r3112 <div class="box tabular settings">
<p>
<%= setting_text_area :mail_handler_body_delimiters, :rows => 5 %>
Jean-Philippe Lang
Adds specific css class for information in forms....
r8634 <em class="info"><%= l(:text_line_separated) %></em>
Jean-Philippe Lang
Adds a setting to remove incoming emails body after a delimiter (#4409)....
r3112 </p>
Jean-Philippe Lang
Exclude attachments from incoming emails based on file name (#3413)....
r11937 <p>
<%= setting_text_field :mail_handler_excluded_filenames, :size => 60 %>
<em class="info"><%= l(:text_comma_separated) %>
<%= l(:label_example) %>: smime.p7s, *.vcf</em>
</p>
Jean-Philippe Lang
Adds a setting to remove incoming emails body after a delimiter (#4409)....
r3112 </div>
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 <div class="box tabular settings">
Toshi MARUYAMA
remove trailing white-spaces from app/views/settings/_mail_handler.html.erb...
r7167 <p><%= setting_check_box :mail_handler_api_enabled,
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 :onclick => "if (this.checked) { $('#settings_mail_handler_api_key').removeAttr('disabled'); } else { $('#settings_mail_handler_api_key').attr('disabled', true); }"%></p>
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_text_field :mail_handler_api_key, :size => 30,
Toshi MARUYAMA
replace tabs to spaces at app/views/settings/_mail_handler.html.erb...
r7212 :id => 'settings_mail_handler_api_key',
:disabled => !Setting.mail_handler_api_enabled? %>
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 <%= link_to_function l(:label_generate_key), "if (!$('#settings_mail_handler_api_key').attr('disabled')) { $('#settings_mail_handler_api_key').val(randomKey(20)) }" %>
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 </p>
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 </div>
<%= submit_tag l(:button_save) %>
Jean-Philippe Lang
Adds a setting to remove incoming emails body after a delimiter (#4409)....
r3112
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 <% end %>