Mailx bulk operations


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Mailx bulk operations
# 1  
Old 03-23-2017
Mailx bulk operations

Greeting.

How to download messages in bulk in mailx? e.g. how to download all the message received on mar-23-2017 and save as a file or download individual mailx message that received on mar-23-2017 as individual file and as a loop?

We are on HP-UX centstdb B.11.31 U ia64 3294693583 unlimited-user license

We monitor our system using some customised scripts and run it as cron jobs. The cron job will send the job status message as root. We will then logon to our server and check those messages. Is there a way we can bulk download the messages?

What we have in mind, is to bulk download, and then set up a search script for error and then send a daily report to us instead of us have to logon to the server and check manually for any failed cron jobs.



Thanks for all the help.

Last edited by rbatte1; 03-23-2017 at 07:04 AM.. Reason: Renamed thread from "D". Corrected spelling and joined up the sentences to make it readable adding ICODE tags for the output.
# 2  
Old 03-23-2017
Hi,

I don't myself have any direct experience with HP-UX, but I know that the mailx implementation on Solaris allows you to save ranges of messages, albeit not by date. Does the HP-UX implementation allow you to do the same ? If it does, then the man page for mailx should show that the save or copy commands let you do that, and give you the syntax.

If you absolutely have to do the saving by date however, and not simply be able to save ranges of messages, then a better option here (well, perhaps better isn't the right word, but an option anyway) would be to directly monitor the user's local mailbox in your monitoring script, rather than going via an MUA like mailx. Or if there's another server you could do the processing on, you could SCP or otherwise copy the mailbox file off, parse it, then do whatever you had to do based on what you found.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bulk changes using sed

Hallo Team, I would like to change everything on field 24 that starts with 10.0.108.* to be 10.0.108.11 -bash-3.2$ cat pax1.csv|cut -f24 -d","|sort -u 10.0.108.11 10.0.108.11100 10.0.108.11102 10.0.108.11104 10.0.108.11105 10.0.108.11106 10.0.108.11108 10.0.108.11110... (6 Replies)
Discussion started by: kekanap
6 Replies

2. Shell Programming and Scripting

Parsing Bulk Data

Hi All, :D Actullay I am looking for a smart way :b: to parse files in a directory whose count is around 2000000 :eek: in a single day. Find is working with me but taking a lot of times :confused:, sometimes even a day which is not helping me.:wall: So anyone can help me know a smart... (5 Replies)
Discussion started by: jojo123
5 Replies

3. Shell Programming and Scripting

Renaming files in bulk.

Hi, I have a bunch of files which are named something like: Company Name~1234~X1234~X1-123.pdf I need to get them renamed something like: Company Name~1234(X1234)X1-123.pdf Once I have the X1234 inside () I have a piece of software which can use the X1234 bit. I will be receiving... (7 Replies)
Discussion started by: jcborland
7 Replies

4. Shell Programming and Scripting

Bulk Find and Replace

Hi Friends, I have a directory with a ton of .html files, like this ls -m1 dir 1.html 2.html 3.html 4.html Somewhere in the files, there is a pattern like this 1.html http://unix.com/cgi-bin/task?taskid=12010&task.out 2.html http://unix.com/cgi-bin/task?taskid=11110&task.out... (1 Reply)
Discussion started by: jacobs.smith
1 Replies

5. Shell Programming and Scripting

Bulk rename

hi, my directory has the following files I want to rename or mv them as file 1 corresponds to new_1.bed, file2 to new_2.bed and so on. How do I do it using awk or bash? TIA (4 Replies)
Discussion started by: jacobs.smith
4 Replies

6. AIX

Bulk Fixes Selection

Under smit, one has to manually select each fix with F7. there 9000 fixes left to be marked. How Can I manually install/Mark all of these without SMIT. ---------- Post updated at 02:29 PM ---------- Previous update was at 01:15 PM ---------- From the command line instfix -T -d... (4 Replies)
Discussion started by: mrmurdock
4 Replies

7. Shell Programming and Scripting

Mailx: How to send a attachment using mailx command

Hi All, Can anyone please provide the command for sending an mail with attachment using mailx command. Thanks in Advance :) Regards, Siram. (3 Replies)
Discussion started by: Sriram.Vedula53
3 Replies

8. Shell Programming and Scripting

outcomment bulk

Hello chiefs, So i wanna outcomment several lines, but i dont want to start each line with #-sign. Once i saw it in use, but dont remember the syntax. It should work with sh or ksh. regards congo (3 Replies)
Discussion started by: congo
3 Replies

9. UNIX for Dummies Questions & Answers

mailx error message : mailx: NUL changed to @

If I use the "Mail" link instead of the "mail" link to ../mailx I get this error. Mail so-n-so @whatever.com mailx: NUL changed to @ Unknown command: "postmaster" The email still goes through but i get the error. If I use "mail" it goes thru without the error. Any ideas?? (2 Replies)
Discussion started by: BG_JrAdmin
2 Replies

10. BSD

bulk pkg_delete (FreeBSD)

I have been toying with this all night now and cannot seem to get it to work, so I came to you for some aid. I recently discovered the wonders of the AWK programming language and how it can be useful of UNIX system administratioin, especially directly from and interacitive interpreter (ala sh). ... (0 Replies)
Discussion started by: erebus47
0 Replies
Login or Register to Ask a Question