You should just be able to add a rule using the ufw command. This would then be saved as part of your rule set.
Code:
ufw insert # allow from longview.linode.com
You would choose the value for
# so this appears early in the rule list - you can use
ufw status numbered for a numbered list.
I'm not sure if ufw accepts a host name in place of an IP address - in any event, iptables only resolves it once, when the rule is loaded, and uses the IP address thereafter. So you could use 96.126.119.66 instead, and you'd just have to change it if the address for longview.linode.com ever changes.