Recent content by pietroaretino

  1. P

    RAIDZ-1 PBS Mismatched Disk Sizes

    Thank you for your reply. I cannot give you those outputs as I am unable to create a pool. I am still at the installation phase. I thought RAIDZ used striped-parity, not a mirror? This is how I am attempting to configure the disks:
  2. P

    Unplugged USB stops backup

    In your PVE, if you look at that VMs "Hardware" section, whats configured in there? Is there a USB device? Try removing that USB device from the hardware section and running the backup again. e.g.
  3. P

    RAIDZ-1 PBS Mismatched Disk Sizes

    Please pardon my ignorance but I was under the assumption that you could make a RAIDZ-1 with different sized disks with the caveat that the entire RAID would configure itself around the smallest sized disk. Is this incorrect? I was setting up a new PBS test server with 3 x 2TB disks and a single...
  4. P

    How to allow an external website to send emails on my behalf

    Typical setup is INTERNET/WAN <-----> Firewall <----> PMG <----> Mail server So with your firewall just create a NAT rule that routes port 587 to your Mail Server, not your PMG. This makes sense anyways because PMG just checks incoming and outgoing mail, 465, 587, 143, 993 are ports used for...
  5. P

    Spam Report Mails aren't DKIM signed

    I saw that but didn't think it pertained to this particular problem o_O Thank you very much for pointing it out. I have changed it to Header now and after restarting the pmgspamreport.service, I am no longer seeing those errors. I will check on it again once it runs its scheduled tasks. UPDATE...
  6. P

    DKIM_INVALID but DKIM is valid...

    Check how your unbound resolves the dkim with dig or something vs external dns dig @127.0.0.1 TXT dkim._domainkey.domain.com dig @8.8.4.4 TXT dkim._domainkey.domain.com Try flushing the DNS. unbound-control flush_zone . or unbound-control flush
  7. P

    DKIM_INVALID but DKIM is valid...

    Do you have a log of one the emails that bounce/get rejected because of the DKIM-INVALID error? That may help. 1)Are the emails that have this error incoming or outgoing emails? 1)Are you running your own DNS? What DNS is your PMG using? 2)Are you using your PMG for DNS and doing DNSBL look ups...
  8. P

    Configuring dkim and DNS

    Yes some DNS/Registrars require it to be split into multiple DNS entries, sometimes formatted in particular ways based on the Registrars requirements. I've definitely run into this when I increased my Key Size to 4096.
  9. P

    Spam Report Mails aren't DKIM signed

    Hello I am encountering the same issue. My domains have been DKIM signed since this PMG instance was setup still in version 7.X It is currently at version 8.2.10 however my daily and weekly spam reports have stopped sending. Running the command: journalctl -u pmgspamreport.service -n 100...
  10. P

    Sync Jobs & Encryption

    Yes, sorry I simply did a find and replace to sanitize the name of my actual servers. But you are correct. However I discovered how to fix this problem if anyone encounters the same issue. Firstly and hopefully one has their key backups! Which I did. On your PVE simply go to to Datacenter ->...
  11. P

    Sync Jobs & Encryption

    Thank you Chris for your response. So in this scenario inside of /etc/pve/priv/storage/ I have the files: -pbs1.enc -pbs1.pw -pbs2.enc -pbs2.pw Therefore if I understand this correctly I could just run the command: cat pbs1.enc > pbs2.enc Of course I will make a backup before I touch anything...
  12. P

    Sync Jobs & Encryption

    Question about how a sync job handles encryption. Scenario: A) PVE1 executes encrypted backups to PBS1 B) PBS2 runs a sync job (pull) from PBS1 C) PVE1 wants to restore from a backup located on PBS2 But now PVE1 receives a "wrong key - unable to verify signature since manifest's key does not...
  13. P

    TASK ERROR: activating LV 'pve/data' failed: Activation of logical volume pve/data is prohibited while logical volume pve/data_tdata is active.

    I could kiss you Fiona, thank you so much this is what I needed to get my second volume backup and running after an update and reboot.
  14. P

    Tracking center export to file

    Not gonna lie, this would come in handy if there was a way to do a CSV export. Unfortunately as crz mentioned, the CLI does show the track log, but does not show the "Status". Otherwise it would be easy to pipe that output into a file and do some regex to fix it up.
  15. P

    Change spam report sender name

    Thank you tom, I see that you can indeed put in the full email address as you wish to show up. I was simply under the assumption that the FROM field option allowed me to change the mail address before the @ sign. However it allows you to change the entire email address, understood. Thank you...