mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-11-10 09:32:28 +08:00
fixed invalid embedded image
This commit is contained in:
parent
6ec76221a4
commit
56869dbba5
2 changed files with 3 additions and 6 deletions
|
@ -92,7 +92,7 @@ body {
|
|||
<tr style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
||||
<td class="content-block" style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;" valign="top">
|
||||
<div style="float: left; margin: 0 20px 10px 0px;">
|
||||
<img src="example.duck.png" />
|
||||
<img src="duck.png" />
|
||||
</div>If you are seeing this message then it means you have reached the inbox of your new email address [EMAIL]. Be aware though that the service is in a constant change, so this address might disappear during the next database schema update. Don't start using it as your main email address!
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -635,12 +635,9 @@ chmod +x /usr/local/bin/reload-services.sh
|
|||
# Update site config, make sure ssl is enabled
|
||||
echo "server {
|
||||
listen 80;
|
||||
server_name $HOSTNAME;
|
||||
return 301 https://\$server_name\$request_uri;
|
||||
}
|
||||
|
||||
server {
|
||||
listen [::]:80;
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
|
||||
server_name $HOSTNAME;
|
||||
|
||||
|
|
Loading…
Reference in a new issue