Sponsored Content
Top Forums Shell Programming and Scripting Help about comment verification Post 302885694 by learnbash on Tuesday 28th of January 2014 03:45:32 AM
Old 01-28-2014
Help about comment verification

Hello,

I have a file, in which line 40 is commented. It is basically a cron job,

Code:
#05,35,50 * * * * /usr/local/scripts/my.sh

how i can i verify the line 40 is commented, if not then give me message not commented, otherwise provide us message it is commented.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

verification?

I'm really new at this and wondering how I would go about adding code to my script to verify that all records loaded successfully? (I am loading a file into a table) i'm using the Korn shell. I'm also having trouble verifying parts in the header as i do not really understand the header and... (3 Replies)
Discussion started by: sheranjem
3 Replies

2. Shell Programming and Scripting

SSH login verification

I need to write a script that check users authenting to a particular server ssh -l if sucessfull echo loggin sucess else echo login invalid Any Suggestions ? (4 Replies)
Discussion started by: sriram003
4 Replies

3. UNIX for Dummies Questions & Answers

Signiture verification failed

Hello, I am new to Solaris. I've installed Solaris 10.0 and trying to apply all patches. On Java Desktop, I've applied almost all patches but some of patches should be applied manually on the command line. The patches -should be applied manually on terminal- are downloaded by Sun Update... (1 Reply)
Discussion started by: XNOR
1 Replies

4. Programming

htable + verification

hello every body, I have to verifiy if the param_key is selectionned twice or more and to print only one occurence i'm using htable what's the good implementation to add to the code to verify this. code : { char *tmpStr = NULL; ght_iterator_t iterator_param; void... (0 Replies)
Discussion started by: kamel.seg
0 Replies

5. AIX

HACMP verification

Hi, every midnight hacmp verification is run automatically. clverify.log says there is no erro bu clutils.log says there is 1 error but when i look at the clverify.log no problem at all. Below is the output of the clverify.log what may be the cause of the error in the clutils.log file. Thanks,... (1 Reply)
Discussion started by: mmersoylu
1 Replies

6. Shell Programming and Scripting

Script Verification

Hi eveyone I am planning to use crontab to delete all files in my donwloads directory that are older than one hour I will be using crontab to run this script find /home/kee/downloads/* -daystart -mmin +59 -type f -name -exec rm -r {}\; could you please let me know if the above... (1 Reply)
Discussion started by: k33k00
1 Replies

7. Shell Programming and Scripting

Field verification script help

Hello again unix.com I need some help regarding a script. I have: function checkform ( form ) { if (form.pass.value.length < 6) { alert( "Error." ); form.pass.focus(); document.getElementById('pass').style.backgroundColor="#FFFFFF"; return... (2 Replies)
Discussion started by: galford
2 Replies

8. Solaris

Server login verification

Hi , How to ensure the server i logged in OS cluster ? Is there any command to verify that ? Regards, maddy (5 Replies)
Discussion started by: Maddy123
5 Replies

9. Programming

ECDSA verification

Using ECDSA, how do you verify integrity of Data (D), Given the value for the following: Random number (r) Signature (s) ECpublic Key (K) Thanks. (0 Replies)
Discussion started by: dragonpoint
0 Replies

10. Forum Support Area for Unregistered Users & Account Problems

Can't get past google verification

Trying to register the Verification step is blocking me. I've allowed all the intrusive Google trackers and Java. Tried different browsers with no blocking. Nothing is working. Says: "Try again later Your computer maybe ... " What weird is in this forum section I can pass the recaptcha but in... (1 Reply)
Discussion started by: Unregistered
1 Replies
DMA(8)							    BSD System Manager's Manual 						    DMA(8)

NAME
dma -- DragonFly Mail Agent SYNOPSIS
dma [-DiOt] [-Amode] [-bmode] [-f sender] [-L tag] [-ooption] [-r sender] [-q[arg]] [recipient ...] DESCRIPTION
dma is a small Mail Transport Agent (MTA), designed for home and office use. It accepts mails from locally installed Mail User Agents (MUA) and delivers the mails either locally or to a remote destination. Remote delivery includes several features like TLS/SSL support and SMTP authentication. dma is not intended as a replacement for real, big MTAs like sendmail(8) or postfix(1). Consequently, dma does not listen on port 25 for incoming connections. The options are as follows: -Amode -Ac acts as a compatibility option for sendmail. -bmode -bp List all mails currently stored in the mail queue. -bq Queue the mail, but don't attempt to deliver it. See also the 'DEFER' config file setting below. All other modes are are ignored. -D Don't run in the background. Useful for debugging. -f sender Set sender address (envelope-from) to sender. This overrides the value of the environment variable EMAIL. -i Ignore dots alone on lines by themselves in incoming messages. This should be set if you are reading data from a file. -L tag Set the identifier used in syslog messages to the supplied tag. This is a compatibility option for sendmail. -O This is a compatibility option for sendmail. -ooption Specifying -oi is synonymous to -i. All other options are ignored. -q[arg] Process saved messages in the queue. The argument is optional and ignored. -r sender Same as -f. -t Obtain recipient addresses from the message header. dma will parse the To:, Cc:, and Bcc: headers. The Bcc: header will be removed independent of whether -t is specified or not. CONFIGURATION
dma can be configured with two config files: o auth.conf o dma.conf These two files are stored per default in /etc/dma. FILE FORMAT
Every file contains parameters of the form 'name value'. Lines containing boolean values are set to 'NO' if the line is commented and to 'YES' if the line is uncommented. Empty lines or lines beginning with a '#' are ignored. Parameter names and their values are case sensi- tive. PARAMETERS
auth.conf SMTP authentication can be configured in auth.conf. Each line has the format ``user|smarthost:password''. dma.conf Most of the behaviour of dma can be configured in dma.conf. SMARTHOST (string, default=empty) If you want to send outgoing mails via a smarthost, set this variable to your smarthosts address. PORT (numeric, default=25) Use this port to deliver remote emails. Only useful together with the 'SMARTHOST' option, because dma will deliver all mails to this port, regardless of whether a smarthost is set or not. ALIASES (string, default=/etc/aliases) Path to the local aliases file. Just stick with the default. The aliases file is of the format nam: dest1 dest2 ... In this case, mails to nam will instead be delivered to dest1 and dest2, which in turn could be entries in /etc/aliases. The special name '*' can be used to create a catch-all alias, which gets used if no other matching alias is found. Use the catch-all alias only if you don't want any local mail to be delivered. SPOOLDIR (string, default=/var/spool/dma) Path to dma's spool directory. Just stick with the default. AUTHPATH (string, default=not set) Path to the 'auth.conf' file. SECURETRANS (boolean, default=commented) Uncomment if you want TLS/SSL secured transfer. STARTTLS (boolean, default=commented) Uncomment if you want to use STARTTLS. Only useful together with 'SECURETRANS'. OPPORTUNISTIC_TLS (boolean, default=commented) Uncomment if you want to allow the STARTTLS negotiation to fail. Most useful when dma is used without a smarthost, delivering remote messages directly to the outside mail exchangers; in opportunistic TLS mode, the connection will be encrypted if the remote server sup- ports STARTTLS, but an unencrypted delivery will still be made if the negotiation fails. Only useful together with 'SECURETRANS' and 'STARTTLS'. CERTFILE (string, default=empty) Path to your SSL certificate file. SECURE (boolean, default=commented) Uncomment this entry and change it to 'INSECURE' to use plain text SMTP login over an insecure connection. You have to rename this variable manually to prevent that you send your password accidentally over an insecure connection. DEFER (boolean, default=commented) Uncomment if you want that dma defers your mail. You have to flush your mail queue manually with the -q option. This option is handy if you are behind a dialup line. FULLBOUNCE (boolean, default=commented) Uncomment if you want the bounce message to include the complete original message, not just the headers. MAILNAME (string, default=empty) The internet hostname dma uses to identify the host. If not set or empty, the result of gethostname(3) is used. If 'MAILNAME' is an absolute path to a file, the first line of this file will be used as the hostname. MASQUERADE (string, default=empty) Masquerade the envelope-from addresses with this address/hostname. Use this setting if mails are not accepted by destination mail servers because your sender domain is invalid. This setting is overridden by the -f flag and the EMAIL environment variable. If 'MASQUERADE' does not contain a @ sign, the string is interpreted as a host name. For example, setting 'MASQUERADE' to 'john@' on host 'hamlet' will send all mails as 'john@hamlet'; setting it to 'percolator' will send all mails as 'username@percolator'. NULLCLIENT Bypass aliases and local delivery, and instead forward all mails to the defined 'SMARTHOST'. 'NULLCLIENT' requires 'SMARTHOST' to be set. Environment variables The behavior of dma can be influenced by some environment variables. EMAIL Used to set the sender address (envelope-from). Use a plain address, in the form of user@example.com. This value will be overridden when the -f flag is used. SEE ALSO
mailaddr(7), mailwrapper(8), sendmail(8) J. B. Postel, Simple Mail Transfer Protocol, RFC 821. J. Myers, SMTP Service Extension for Authentication, RFC 2554. P. Hoffman, SMTP Service Extension for Secure SMTP over TLS, RFC 2487. HISTORY
The dma utility first appeared in DragonFly 1.11. AUTHORS
dma was written by Matthias Schmidt <matthias@dragonflybsd.org> and Simon Schubert <2@0x2c.org>. BSD
February 13, 2014 BSD
All times are GMT -4. The time now is 01:23 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy