AlexHK's latest activity

  • A
    AlexHK reacted to cwt's post in the thread Smarthost bei All Inkl with Like Like.
    Hast Du den Smarthost über die GUI vom PMG hinzugefügt oder per Shell? Postfix benötigt dafür i.d.R. libsasl2. Beispiel: apt install libsasl2-modules Dann in /etc/postfix/main.cf den Relayhost eintragen: relayhost = [xxx.kasserver.com]:587...
  • A
    AlexHK reacted to Stoiko Ivanov's post in the thread Security update ClamAV 1.4.6 with Like Like.
    clamav packages in version 1.4.6+dfsg-1~deb13u1+pmg1 are now available in the pmg-test repository: https://pmg.proxmox.com/pmg-docs/pmg-admin-guide.html#pmg_test_repository
  • A
    AlexHK replied to the thread 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...
  • A
    AlexHK reacted to Guillermo Dewey's post in the thread Support for Spamhaus DQS with Like Like.
    I am testing DQS at POSTFIX level and works pretty good. what is not resolve at IP lookup level it will catch spam at content level using its Spamassasin plugin .. I really hope there was an implementation for this plugin on proxmox mail...
  • A
    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.
  • A
    AlexHK reacted to ivenae's post in the thread PMG AI integration with Like Like.
    My solution support local ollama models. You just need a graphic card to run an LLM with enough deciding power. My solution supports only sending unclassified "on the fence" mails to AI – this is a core design feature, because AI is – as you...
  • A
    First I must admit that I really didn't know which script is responsible. It just didn't matter to me - as it just did work. Always. And now I had to check :-) This one is it (probably): ~# grep -R reboot-required /etc/kernel/ /lib/kernel/...
  • A
    AlexHK reacted to IIEP_IT's post in the thread Feature request: Reboot required with Like Like.
    I was also looking at this and I think a clean way I found of doing it is using ansible.builtin.apt in check_mode first: - name: Running apt in check mode to see what will be updated ansible.builtin.apt: update_cache: true...
  • A
    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...
  • A
    I checked in both locations, i couldn't find it.
  • A
    In my PVE 3 node cluster ( no subscription) even after kernel update( dist upgrade message says reboot is required) i couldn't see this file. Would there be any reason why this file wasn't created?
  • A
    If your script never sees a return-path header and always uses the from header, you will know.
  • A
    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...
  • A
    Not wanting to be a "Just use XYZ" guy but maybe in case everything else fails you might try to switch to NFS (which the Synology typically offers too).
  • A
    AlexHK reacted to fabian's post in the thread LXC Containers Backing Up Incredibly Slow with Like Like.
    the zstream format is not meant for long-term storage, so no, that does not really make any sense. if you want ZFS snapshot based backups, do ZFS snapshot based backups, nobody will stop you.
  • A
    AlexHK replied to the thread 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...
  • A
    AlexHK reacted to Impact's post in the thread tailscale and lxc container [SOLVED] with Like Like.
    Why not use the modern dev way via their docs? https://tailscale.com/docs/features/containers/lxc/lxc-unprivileged
  • A
    AlexHK reacted to Morcin42's post in the thread Cluster networking question with Like Like.
    We eventually created a test cluster to just test the different questions and solutions. What we ended up doing that worked perfectly: Made sure all nodes were able to communicate over port 22 and 8006 on the public IP updated /etc/hosts and...
  • A
    AlexHK replied to the thread 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...
  • A
    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...