TLDR; non-global-zone has same configuration files (sendmail.cf) as global-zone but still unable to send mail out using mailx
I have a S11.3 system that has a non-global-zone which uses the exact same sendmail.cf configurations as the global but, unable to send mail out from it.
Apparently there's a 050 501 5.5.4 Invalid domain name error that mailx's output provided during the end of the execution.
When doing a nslookup on the hostname of the box, system returns this;
...
Any suggestions ?
--- Post updated at 10:41 AM ---
Also forgot to provide the ending of mailx output;
i am trying to execute the below script for sending mails from unix
MAIL1="xyz@yahoo.com"
mailx -s "hi" $MAIL1<message.txt
if
then
echo "failure"
else
echo "success"
fi
but iam unable to send this eventhough iam getting success in the output
if i logout and login i have a "you... (1 Reply)
hi,
I have tried this code to send mail.Its not giving me error but I am not receiving mail also.
#!/bin/ksh
echo "The first mail" >msg
cnt=`cat /dir1/msg | wc -l`
if
then
mail -s "Hello" abc.xyz@domain.com < msg
fi
I have also tried with the command
mailx -s "hello"... (0 Replies)
Hi,
I have been trying to send a mail from a remote site using this script
To send the mail:
#!/bin/ksh
MAILTO="abc@xyz.com"
BACKUPDIR="/wls_domains/wli81_1/RHTEAM/OUTPUTBACKUP/"
#BACKUPDIR="../OUTPUTBACKUP/"
while ; do
print $1
uuencode $1 $1 | mail $MAILTO
... (3 Replies)
Hey guys i got this error my logs
- I ping 127.0.0.1 and it says that its alive
- I checked sendmail and it is running
- I tried to send a test email but nothing happens it seems that it hangs
- What is the possible cause of this? (5 Replies)
hi all
i got two server, mercury and procyon
mercury can send email but procyon cannot
below is their syslog
mercury:
Jul 6 13:17:17 mercury sendmail: n665HGXg006886: to
=<leecw@domain.com>, ctladdr=<ora10g@mercury.domain.com> (4001/101), d
elay=00:00:01, xdelay=00:00:01,... (7 Replies)
Hi All
There is one folder in global zone I just want to share the same folder innon global zone. How can i do it?
pls send me script for this. (2 Replies)
I am trying to use a serial communications device that is connected to /dev/ttyb on a netra 240 server. This is a solaris zone configuration using solaris 10 0910. I am able to access /dev/ttyb from the global zone but not throught he non-global zone. I have enabled all of the tty devices in my... (0 Replies)
Hi friends
I am trying to send mail through a unix server.
I am using following command
mailx -s "THIS IS TEST" jhon@gmail.com
Whenever i am typing the above command it is going to next line when i press @ on unix server prompt.
so it is taking this command as following
mailx -s "THIS... (3 Replies)
I am unable to cause the 'mail' command to send mail from my linux ubuntu 15.10 computer. File 'mail.log' typically reports Connection timed out.
I issue the command:
mail -s "my subject" recipient@domain.com < filenamewhere filename is a file containing my message.
Specifically, the... (3 Replies)
tldr; We've installed a non-global-zone from a unified archive which once booted, we're unable to gain access to the system either through zlogin or zlogin -C.
Errors;
svc.startd: instance svc:/system/console-login:default exited with status 127
Investigation;
1) Already opened a SR with... (1 Reply)
Discussion started by: samthewildone
1 Replies
LEARN ABOUT DEBIAN
ldns-notify
ldns-notify(1) General Commands Manual ldns-notify(1)NAME
ldns-notify - notify DNS servers that updates are available
SYNOPSIS
ldns-notify [options] -z zone servers
DESCRIPTION
ldns-notify sends a NOTIFY message to DNS servers. This tells them that an updated zone is available at the master servers. It can perform
TSIG signatures and it can add a SOA serial number of the updated zone. If a server already has that serial number it will disregard the
message.
OPTIONS -z zone
The zone that is updated.
-h Show usage and exit
-v Show the version and exit
-s serial
Append a SOA record indicating the serial number of the updated zone.
-p port
Use port as destination port (default the DNS port 53) for the UDP packets.
-y key:data
Use the given TSIG key and base64-data to sign the NOTIFY. Uses the hmac-md5 algorithm.
-d Print verbose debug information. The query that is sent and the query that is received.
-r num Specify the maximum number of retries before notify gives up trying to send the UDP packet.
EXIT CODE
The program exits with a 0 exit code if all servers replied an acknowledgement to the notify message, and a failure exit code otherwise.
AUTHOR
Written by the ldns team as an example for ldns usage.
REPORTING BUGS
Report bugs to <ldns-team@nlnetlabs.nl>.
COPYRIGHT
Copyright (C) 2005 NLnet Labs. This is free software. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PUR-
POSE.
9 Jan 2007 ldns-notify(1)