mailcatcher-ng 1.3.1 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/mail_catcher/mail.rb +42 -7
- data/lib/mail_catcher/smtp.rb +8 -6
- data/lib/mail_catcher/version.rb +1 -1
- data/lib/mail_catcher/web/application.rb +30 -0
- data/lib/mail_catcher.rb +5 -0
- data/public/assets/mailcatcher.css +31 -0
- data/public/assets/mailcatcher.js +4 -4
- data/views/index.erb +36 -4
- data/views/server_info.erb +582 -94
- metadata +1 -1
data/views/index.erb
CHANGED
|
@@ -94,10 +94,42 @@
|
|
|
94
94
|
<tr>
|
|
95
95
|
<th class="col-attachments"></th>
|
|
96
96
|
<th class="col-bimi"></th>
|
|
97
|
-
<th>
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
97
|
+
<th class="sortable" data-sort-field="from">
|
|
98
|
+
<span>From</span>
|
|
99
|
+
<svg class="sort-icon sort-icon-down" fill="none" stroke-width="1.5" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
100
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m19.5 8.25-7.5 7.5-7.5-7.5"></path>
|
|
101
|
+
</svg>
|
|
102
|
+
<svg class="sort-icon sort-icon-up" style="display: none;" fill="none" stroke-width="1.5" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
103
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m4.5 15.75 7.5-7.5 7.5 7.5"></path>
|
|
104
|
+
</svg>
|
|
105
|
+
</th>
|
|
106
|
+
<th class="sortable" data-sort-field="to">
|
|
107
|
+
<span>To</span>
|
|
108
|
+
<svg class="sort-icon sort-icon-down" fill="none" stroke-width="1.5" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
109
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m19.5 8.25-7.5 7.5-7.5-7.5"></path>
|
|
110
|
+
</svg>
|
|
111
|
+
<svg class="sort-icon sort-icon-up" style="display: none;" fill="none" stroke-width="1.5" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
112
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m4.5 15.75 7.5-7.5 7.5 7.5"></path>
|
|
113
|
+
</svg>
|
|
114
|
+
</th>
|
|
115
|
+
<th class="sortable" data-sort-field="subject">
|
|
116
|
+
<span>Subject</span>
|
|
117
|
+
<svg class="sort-icon sort-icon-down" fill="none" stroke-width="1.5" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
118
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m19.5 8.25-7.5 7.5-7.5-7.5"></path>
|
|
119
|
+
</svg>
|
|
120
|
+
<svg class="sort-icon sort-icon-up" style="display: none;" fill="none" stroke-width="1.5" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
121
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m4.5 15.75 7.5-7.5 7.5 7.5"></path>
|
|
122
|
+
</svg>
|
|
123
|
+
</th>
|
|
124
|
+
<th class="sortable" data-sort-field="received">
|
|
125
|
+
<span>Received</span>
|
|
126
|
+
<svg class="sort-icon sort-icon-down" fill="none" stroke-width="1.5" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
127
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m19.5 8.25-7.5 7.5-7.5-7.5"></path>
|
|
128
|
+
</svg>
|
|
129
|
+
<svg class="sort-icon sort-icon-up" style="display: none;" fill="none" stroke-width="1.5" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
130
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m4.5 15.75 7.5-7.5 7.5 7.5"></path>
|
|
131
|
+
</svg>
|
|
132
|
+
</th>
|
|
101
133
|
<th>Size</th>
|
|
102
134
|
</tr>
|
|
103
135
|
</thead>
|