[SOLVED] Fix link url in notification mail

bamf

Member
Jun 14, 2023
14
1
8
Hi,

my PBS hat hostname pbs, while the FQDN is pbs.home.arpa.

How to fix the link in the notification mail so it points to the correct FQDN URL?

Code:
Job ID:             <->
Datastore:          qnap-nas
Remote:             pbs-hetzner
Remote Store:       local-hdd

Synchronization successful.


Please visit the web interface for further details:

<https://pbs:8007/#DataStore-qnap-nas>

It should say:


Code:
Please visit the web interface for further details:

<https://pbs.home.arpa:8007/#DataStore-qnap-nas>
 
Hi @bamf, if possible, could you please share the contents of your /etc/hosts and /etc/resolv.conf files?
 
Last edited:
Code:
root@pbs:~# cat /etc/hosts
127.0.0.1 localhost
127.0.1.1 pbs
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

Code:
root@pbs:~# cat /etc/resolv.conf
nameserver 192.168.100.1
 
Thanks @bamf , could you try updating your /etc/resolv.conf with the following, run a sync, and then check again?

Code:
search home.arpa
nameserver 192.168.100.1
 
  • Like
Reactions: bamf
That's it. Thanks!

Code:
Synchronization successful.


Please visit the web interface for further details:

<https://pbs.home.arpa:8007/#DataStore-qnap-nas>