CLI zmmsgtrace: Difference between revisions

(Adding Article Infobox)
No edit summary
Line 1: Line 1:
{{Article Infobox|{{admin}}|{{ZCS 6.0}}|{{ZCS 5.0}}|{{ZCS 4.5}}}}
{{Article Infobox|{{admin}}|{{ZCS 8.0}}|{{ZCS 7.0}}|{{ZCS 6.0}}|{{ZCS 5.0}}|{{ZCS 4.5}}}}
For the most recent information on this CLI, including syntax and description, see [http://www.zimbra.com/docs/ne/latest/administration_guide/A_app-command-line.20.1.html ZCS Administrator's Guide Network Edition > Appendix A Command-Line Utilities].
For the most recent information on this CLI, including syntax and description, see [http://www.zimbra.com/docs/ne/latest/administration_guide/A_app-command-line.20.1.html ZCS Administrator's Guide Network Edition > Appendix A Command-Line Utilities].
==zmmsgtrace==
This command is used to trace an email message that was sent or received.
=ZCS 7 and 8=
===Syntax===
zmmsgtrace [options] [<mail-syslog-file>...]
===Description===
{|style="width:100%" border="1" cellpadding="5" cellspacing="0"
! align="left" bgcolor="tan" |Long Name
! align="left" bgcolor="tan" |Short Name
! align="left" bgcolor="tan"|Description
|-
|style="background=white" |<nowiki>--help</nowiki>
|<nowiki></nowiki>
|Shows the help for the usage options for this tool.
|-
|style="background=white" |<nowiki>--id</nowiki>
|<nowiki>-i</nowiki>
|Message ID. Case sensitive regex.
|-
|style="background=white" |<nowiki>--sender</nowiki>
|<nowiki>-s</nowiki>
|Sender address. Case insensitive regex.
|-
|style="background=white" |<nowiki>--recipient</nowiki>
|<nowiki>-r</nowiki>
|Recipient address. Case insensitive regex.
|-
|style="background=white" |<nowiki>--srchost</nowiki>
|<nowiki>-F</nowiki>
|Source host, using hostname or IP. Case insensitive regex.
|-
|style="background=white" |<nowiki>--desthost</nowiki>
|<nowiki>-D</nowiki>
|Destination host, using hostname or IP. Case insensitive regex.
|-
|style="background=white" |<nowiki>--time</nowiki>
|<nowiki>-t</nowiki>
|Start, end times in YYYYMM[DD[HH[MM[SS]]]] format
|-
|style="background=white" |<nowiki>--year</nowiki>
|<nowiki></nowiki>
|File year if no YYYY in file
|-
|style="background=white" |<nowiki>--nosort</nowiki>
|<nowiki></nowiki>
|Do not sort @ARGV files by mtime
|-
|style="background=white" |<nowiki>--debug</nowiki>
|<nowiki></nowiki>
|Verbose output useful for debugging
|-
|style="background=white" |<nowiki>--man</nowiki>
|<nowiki></nowiki>
|Display the entire man page. Contains useful examples.
|}
===Examples===
Show a trace of all messages in '/var/log/zimbra.log':
$ zmmsgtrace
Show a trace of all messages in '/var/log/zimbra.log' by sender matching the word 'phil':
$ zmmsgtrace -s phil
Show a trace of messages sent by 'phil.pearl' between '20130917' and '20130921' in '/var/log/zimbra.log.1.gz' and '/var/log/zimbra.log':
# note: a '.' (period) in a regex matches any character
$ cd /var/log
$ zmmsgtrace zimbra.log.1.gz zimbra.log \
            -sender 'phil\.pearl' -srchost localhost -time 20130917,20130921
Find any email sent by an email address starting with 'p' to anyone at 'example.com' in all files matching /var/log/zimbra*:
# note: this regex can match more than desired!
$ zmmsgtrace -s '^p' -r '@example.com' /var/log/zimbra*
# this regex is more specific - recipient ending in "@example.com"
$ zmmsgtrace -s '^p' -r '@example\.com$' /var/log/zimbra*


=ZCS 6.0=
=ZCS 6.0=
*Beginning with 6.0, the CLI zmmsgtrace is no longer available and there is no planned replacement.
*6.0 does not have the CLI zmmsgtrace  
 


=ZCS 5.0=
=ZCS 5.0=
==zmmsgtrace==
This command is used to trace an email message that was sent or received with the last 30 days.


===Syntax===
===Syntax===
Line 47: Line 130:
|start, end times in YYYYMMDD (hhmmss) format
|start, end times in YYYYMMDD (hhmmss) format
|}
|}


=ZCS 4.5=
=ZCS 4.5=

Revision as of 07:59, 5 September 2013

Admin Article

Article Information

This article applies to the following ZCS versions.

ZCS 8.0 Article ZCS 8.0 ZCS 7.0 Article ZCS 7.0 ZCS 6.0 Article ZCS 6.0


For the most recent information on this CLI, including syntax and description, see ZCS Administrator's Guide Network Edition > Appendix A Command-Line Utilities.

zmmsgtrace

This command is used to trace an email message that was sent or received.

ZCS 7 and 8

Syntax

zmmsgtrace [options] [<mail-syslog-file>...]

Description

Long Name Short Name Description
--help Shows the help for the usage options for this tool.
--id -i Message ID. Case sensitive regex.
--sender -s Sender address. Case insensitive regex.
--recipient -r Recipient address. Case insensitive regex.
--srchost -F Source host, using hostname or IP. Case insensitive regex.
--desthost -D Destination host, using hostname or IP. Case insensitive regex.
--time -t Start, end times in YYYYMM[DD[HH[MM[SS]]]] format
--year File year if no YYYY in file
--nosort Do not sort @ARGV files by mtime
--debug Verbose output useful for debugging
--man Display the entire man page. Contains useful examples.

Examples

Show a trace of all messages in '/var/log/zimbra.log':

$ zmmsgtrace

Show a trace of all messages in '/var/log/zimbra.log' by sender matching the word 'phil':

$ zmmsgtrace -s phil

Show a trace of messages sent by 'phil.pearl' between '20130917' and '20130921' in '/var/log/zimbra.log.1.gz' and '/var/log/zimbra.log':

# note: a '.' (period) in a regex matches any character
$ cd /var/log
$ zmmsgtrace zimbra.log.1.gz zimbra.log \
            -sender 'phil\.pearl' -srchost localhost -time 20130917,20130921

Find any email sent by an email address starting with 'p' to anyone at 'example.com' in all files matching /var/log/zimbra*:

# note: this regex can match more than desired!
$ zmmsgtrace -s '^p' -r '@example.com' /var/log/zimbra*
# this regex is more specific - recipient ending in "@example.com"
$ zmmsgtrace -s '^p' -r '@example\.com$' /var/log/zimbra*


ZCS 6.0

  • 6.0 does not have the CLI zmmsgtrace


ZCS 5.0

Syntax

zmmsgtrace {-i|-s|-r|-F} <message_id>

Description

Long Name Short Name Description
--help -h Shows the help for the usage options for this tool.
-i Message ID.
-s Sender address.
-r Recipient address.
-F From Times in YYYYMMDD (hhmmss) format.
-D dest_ip/host
-t start, end times in YYYYMMDD (hhmmss) format


ZCS 4.5

Related Articles


Verified Against: ZCS 6.0, 5.0, 4.5 Date Created: 5/3/2006
Article ID: https://wiki.zimbra.com/index.php?title=CLI_zmmsgtrace Date Modified: 2013-09-05



Try Zimbra

Try Zimbra Collaboration with a 60-day free trial.
Get it now »

Want to get involved?

You can contribute in the Community, Wiki, Code, or development of Zimlets.
Find out more. »

Looking for a Video?

Visit our YouTube channel to get the latest webinars, technology news, product overviews, and so much more.
Go to the YouTube channel »

Jump to: navigation, search