Few people used dmail filters (~900 users in 5 years) and even fewer used them correctly. Most people used them to try to block dmail spam, but usually they either blocked too much (by adding common words that are present in nearly all dmails, causing all mails to them to be filtered) or too little (blocking specific email addresses or urls, which usually are never seen again after the spammer is banned). Nowadays the spam detection system does a better job of filtering spam.
47 lines
1.6 KiB
Plaintext
47 lines
1.6 KiB
Plaintext
<div id="c-dmails">
|
|
<div id="a-show">
|
|
<div class="dmail">
|
|
<h1>Show Message</h1>
|
|
<h2><%= @dmail.title %></h2>
|
|
|
|
<ul style="margin-bottom: 1em;">
|
|
<li><strong>Sender</strong>: <%= link_to_user @dmail.from %></li>
|
|
<li><strong>Recipient</strong>: <%= link_to_user @dmail.to %></li>
|
|
<li><strong>Date</strong>: <%= compact_time(@dmail.created_at) %></li>
|
|
</ul>
|
|
|
|
<h3>Body</h3>
|
|
<div class="prose">
|
|
<%= format_text(@dmail.body) %>
|
|
|
|
<% if @dmail.is_automated? %>
|
|
<p class="fineprint">
|
|
This is an automated message. Responses will not be seen. If you have any questions either message a moderator or ask in the forum.
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
|
|
<p>
|
|
<%= link_to "Respond", new_dmail_path(:respond_to_id => @dmail) %>
|
|
| <%= link_to "Forward", new_dmail_path(:respond_to_id => @dmail, :forward => true) %>
|
|
| <%= link_to "Permalink", dmail_path(@dmail, :key => @dmail.key), :title => "Use this URL to privately share with a moderator" %>
|
|
<% if CurrentUser.is_gold? %>
|
|
<span id="spam-links">
|
|
<% if @dmail.is_spam? %>
|
|
| <%= link_to "Not spam", ham_dmail_path(@dmail), remote: :true, method: :post %>
|
|
<% else %>
|
|
| <%= link_to "Mark as spam", spam_dmail_path(@dmail), remote: :true, method: :post %>
|
|
<% end %>
|
|
</span>
|
|
<% end %>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render "secondary_links" %>
|
|
|
|
<% content_for(:page_title) do %>
|
|
Message - <%= @dmail.title %> - <%= Danbooru.config.app_name %>
|
|
<% end %>
|