mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-08-10 21:12:54 +00:00
user quarantine: slightly rework help text and style
Use the semantic html kbd tag [0] for the keyboard short cut and style it color-scheme agnostic, which was adapted from the style we use in our PVE wiki. [0]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/kbd Additionally to some small rewording and touch up of the text and slightly increase the font-size. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
c1e525e497
commit
b81827a36d
@ -274,3 +274,17 @@ a.download {
|
|||||||
.pmx-type-row td {
|
.pmx-type-row td {
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* As both background and foreground colors are set this works OK for light and dark mode */
|
||||||
|
kbd {
|
||||||
|
background-color: #eff3fb;
|
||||||
|
color: #222;
|
||||||
|
border: 1px solid #b4b4b4;
|
||||||
|
border-radius: 1px;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 0.85em;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: 1;
|
||||||
|
padding: 2px 4px;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
@ -4,41 +4,44 @@ Ext.define('PMG.QuarantineAboutPage', {
|
|||||||
xtype: 'pmgQuarantineAbout',
|
xtype: 'pmgQuarantineAbout',
|
||||||
|
|
||||||
bodyPadding: 10,
|
bodyPadding: 10,
|
||||||
title: 'Proxmox Mail Gateway Quarantine Help',
|
bodyStyle: {
|
||||||
|
fontSize: '14px',
|
||||||
|
},
|
||||||
|
|
||||||
|
title: gettext('Proxmox Mail Gateway Quarantine Help'),
|
||||||
|
|
||||||
html: Proxmox.Markdown.parse(
|
html: Proxmox.Markdown.parse(
|
||||||
`# About
|
`# About
|
||||||
This is the email quarantine interface for end-users provided by your email provider.
|
This is the end-user email quarantine interface provided by your email provider.
|
||||||
|
|
||||||
Proxmox Mail Gateway is Software used to scan emails for threats like spam or viruses.
|
Proxmox Mail Gateway is software that scans email for threats such as spam or viruses.
|
||||||
|
|
||||||
Usually emails that contain viruses or are detected as being certain spam are blocked by your
|
Typically, emails that contain viruses or are identified as specific spam are blocked by your
|
||||||
provider.
|
provider.
|
||||||
Emails that are not classified as certain spam may be put into quarantine, where the recipient can
|
Emails that are not classified as specific spam can be quarantined for the recipient to decide
|
||||||
decide if they want to receive or delete them. In most setups you will receive a Spam Report email
|
whether to receive or delete. In most setups, you will receive a spam report email notifying you
|
||||||
to notify you, if your address has mail put in its quarantine.
|
when mail is quarantined for your address.
|
||||||
|
|
||||||
Additionally you have the option to block or welcome certain addresses in general.
|
You also have the option to block or whitelist certain addresses:
|
||||||
* Welcoming, in the Whitelist menu, results in the mails being directly delivered,
|
|
||||||
instead of being stored in quarantine.
|
|
||||||
* Blocking, in the Blacklist menu, results in the mails being directly deleted,
|
|
||||||
instead of being stored in quarantine.
|
|
||||||
|
|
||||||
|
* Allow, in the Whitelist menu, results in the mail being delivered directly instead of being
|
||||||
|
quarantined.
|
||||||
|
* Blocking, in the Blacklist menu, causes the messages to be deleted directly instead of being
|
||||||
|
quarantined.
|
||||||
|
|
||||||
**Note:** The sending of Spam Report emails and this Webpage are controlled by your email provider.
|
**Note:** The sending of *Spam Report* emails and this web application is controlled by your email
|
||||||
|
provider.
|
||||||
|
|
||||||
Proxmox Server Solutions GmbH develops the software and is not running mail services for users.
|
Proxmox Server Solutions GmbH develops the software and does not operate email services for users.
|
||||||
|
|
||||||
## Shortcuts
|
## Keyboard Shortcuts
|
||||||
|
|
||||||
When you have selected an entry in your quarantine you can use the following keyboard short-cuts
|
Once you have selected an item in Quarantine, you can either use the dedicated buttons to deliver or
|
||||||
in place of the buttons on top:
|
delete the selected email, or use the following keyboard shortcuts instead:
|
||||||
|
|
||||||
* **D:** Deliver the mail
|
* <kbd>D</kbd>: Deliver the mail.
|
||||||
* **Delete:** Delete the mail
|
* <kbd>Delete</kbd>: Delete the mail.
|
||||||
* **B:** Add the sender to the Blocklist/Blacklist
|
* <kbd>B</kbd>: Add the sender to the Blocklist/Blacklist.
|
||||||
* **W:** Add the sender to the Welcomelist/Whitelist
|
* <kbd>W</kbd>: Add the sender to the Welcomelist/Whitelist.
|
||||||
`),
|
`),
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user