Recent content by AlexHK

  1. A

    Support for Spamhaus DQS

    In my case, I didn't have to modify any PMG config files on install, so it should survive PMG updates (and in fact has for almost a year). If you followed standard install, you should be in the same boat. If you did modify a config file (v342.pre? should not be needed if "Use RBL checks" is...
  2. A

    [SOLVED] Unable to start VM with Hookscript

    Did you create your hook script on Windows (CRLF line endings)? If so, save in unix file format or convert otherwise. If it's Windows line endings it's trying to run the script with #!/bin/bash\r (which doesn't exist) instead of just #!/bin/bash.
  3. A

    On package updates, how do you know when a reboot is required?

    If you look at /usr/bin/pveupgrade (PVE's upgrade wrapper script) you will find that it checks the list of pending packages from before running apt-get dist-upgrade and outputs the "consider rebooting message" on kernel package that is no longer pending afterwards. Since PVE does not write the...
  4. A

    Send Return-Path to Custom Check Interface

    If your script never sees a return-path header and always uses the from header, you will know.
  5. A

    Send Return-Path to Custom Check Interface

    I don't think Postfix/PMG adds any of these headers, they are added by the final delivery agent. Reading this: https://www.postfix.org/smtp.8.html You could try adding flag=R in the template master.cf.in (for the scan/lmtp service) after the -o options, this should in theory add the...
  6. A

    Hook script and vzdump options

    What environment variables are you referring to? the backup-client? Or what is the actual variable you have used? As far as I know, at least for the backup-client, there is no ENV variable for change detection mode. https://pbs.proxmox.com/docs/backup-client.html#environment-variables NB...
  7. A

    outgoing mail connector fails

    I am not very familiar with o365, but it seems the problem is just that your PMG is refusing to accept the mail: 554 5.7.1 <...@gmail.com>: Relay access denied from pmg2.connectitnet.com Try sending an email to your own domain instead of gmail (for this quick test only). Having said that, see...
  8. A

    Selective smarthost (based on recipient, say outlook.com or live.com)

    Here is a working example with smtp2to.com for mail delivery and t-online.de as domain. Mail to t-online.de gets delivered via smtp2go.com, the rest will be delivered directly by PMG. This should of course work with other SMTP servers. Other domains can be added as needed. # Install SASL...
  9. A

    PBS with slow backend

    I know this doesn't answer the question directly, but to overcome this I have setup a local PBS to which I backup my machines locally. From this local PBS I sync to a remote PBS instance. This offsite PBS is behind a slow connection (VPN over cable modem with limited upload speed). The sync...
  10. A

    Delete/Prune All Backups

    I just had the same problem and was staring at a task manually deleting backup for backup for over an hour on an old test namespace. There seems to be a workaround. 1. Delete the complete namespace (and select "Delete all backup groups), 2. Simply add namespace back by entering the same name...
  11. A

    Proxmox (as a company) - what the HELL are you doing? Kernel update to 7 broke networking IN A VM

    Without knowing this thread, I updated two instances of PBS to version 4.2 earlier today - and used the proxmox-network-interface-pinning tool (and updated /etc/network/interfaces accordingly) to make sure kernel 7 won't change my interfaces names to something else. Paying attention sometimes...
  12. A

    Remove "SPAM: "-Prefix from Mails if Deliver-Button is clicked

    Not sure I understand what exactly you are asking. Somewhere in your PMG > Mail Filter there is an action that adds the SPAM: to the subject. By default it's called something like "Quarantine/Mark Spam (Level 3)". Edit it and remove the action object that adds the subject...
  13. A

    Remove "SPAM: "-Prefix from Mails if Deliver-Button is clicked

    I am not sure how to remove, but you could just not add the SPAM to the subject to begin with?
  14. A

    Change HELO-fqdn independently from server hostname permanently?

    You need to use the template engine. Explained here: https://pmg.proxmox.com/pmg-docs/pmg-admin-guide.html#pmgconfig_template_engine
  15. A

    Minisforum MS-01 dgpu passthrough

    This old thread just helped me solve a problem for a stuck Win 10 VM. I recently upgraded a MS-01 from NVIDIA RTX A2000 to a RTX 4000 SFF Ada GPU. The Win 10 VM got stuck at "Guest has not initialized the display (yet)." before boot and became unresponsive, whenever the new GPU was attached...