Go to file
Thomas Renninger 5709ea8d39 Accepting request 250300 from home:elvigia:branches:Base:System
- mcelog.tmpfiles, mcelog-socket-path.patch, move socket
  and pid file to /run/mcelog directory.
  This update may require reboot as the relevant rpm macro
  tmpfiles_create is not yet in any product.

OBS-URL: https://build.opensuse.org/request/show/250300
OBS-URL: https://build.opensuse.org/package/show/Base:System/mcelog?expand=0&rev=45
2014-09-22 08:53:25 +00:00
.gitattributes OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/mcelog?expand=0&rev=1 2007-01-15 23:24:56 +00:00
.gitignore OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/mcelog?expand=0&rev=1 2007-01-15 23:24:56 +00:00
90-mcelog.rules Accepting request 205189 from home:elvigia:branches:Base:System 2013-11-27 08:05:19 +00:00
0001-Continue-without-dmi-when-no-SMBIOS-or-SMBIOS-0x0-in.patch Accepting request 239581 from home:juwolf:branches:Base:System 2014-07-04 14:20:51 +00:00
add-defines.patch Accepting request 234343 from home:trenn:branches:Base:System 2014-05-16 15:58:42 +00:00
add-f10h-support.patch Accepting request 234343 from home:trenn:branches:Base:System 2014-05-16 15:58:42 +00:00
add-f11h-support.patch Accepting request 234343 from home:trenn:branches:Base:System 2014-05-16 15:58:42 +00:00
add-f12h-support.patch Accepting request 234343 from home:trenn:branches:Base:System 2014-05-16 15:58:42 +00:00
add-f14h-support.patch Accepting request 234343 from home:trenn:branches:Base:System 2014-05-16 15:58:42 +00:00
add-f15h-support.patch Accepting request 234343 from home:trenn:branches:Base:System 2014-05-16 15:58:42 +00:00
add-f16h-support.patch Accepting request 234343 from home:trenn:branches:Base:System 2014-05-16 15:58:42 +00:00
email.patch Accepting request 231933 from home:trenn:branches:Base:System 2014-04-28 17:00:23 +00:00
mcelog_invert_prefill_db_warning.patch Accepting request 231933 from home:trenn:branches:Base:System 2014-04-28 17:00:23 +00:00
mcelog-1.0.1.tar.bz2 Accepting request 231933 from home:trenn:branches:Base:System 2014-04-28 17:00:23 +00:00
mcelog-socket-path.patch Accepting request 250300 from home:elvigia:branches:Base:System 2014-09-22 08:53:25 +00:00
mcelog.changes Accepting request 250300 from home:elvigia:branches:Base:System 2014-09-22 08:53:25 +00:00
mcelog.spec Accepting request 250300 from home:elvigia:branches:Base:System 2014-09-22 08:53:25 +00:00
mcelog.sysconfig - Remove test email address from config 2011-06-07 09:53:12 +00:00
mcelog.systemd Accepting request 234343 from home:trenn:branches:Base:System 2014-05-16 15:58:42 +00:00
mcelog.tmpfiles Accepting request 250300 from home:elvigia:branches:Base:System 2014-09-22 08:53:25 +00:00
README.email_setup OBS-URL: https://build.opensuse.org/package/show/Base:System/mcelog?expand=0&rev=14 2010-10-25 13:51:14 +00:00
Start-consolidating-AMD-specific-stuff.patch Accepting request 234343 from home:trenn:branches:Base:System 2014-05-16 15:58:42 +00:00

MACHINE CHECK EXCPETION NOTIFICATION VIA EMAIL
==============================================

(C)opyright by Thomas Renninger <trenn@suse.de> Novell Inc. 2010

The setup to send Machine Check Exceptions (MCEs) via email relies on a
working smtp server listening on localhost on port 25.

How this can easily be configured is can be read up here:
http://en.opensuse.org/Mail_server_HOWTO
in the "Outgoing" section.

Test your setup by trying to send test mails via the "mail" shell command,
included in the mailx package.

Specify the email address where the MCEs should get mailed to here:
/etc/sysconfig/mcelog

You can filter MCE mails by matching against these mail headers.
Either one of these headers are set:
  - X-Mcelog-Uncorrectable
  - X-Mcelog-Correctable

and one of these are set:
  - X-Mcelog-Memory
  - X-Mcelog-CPU
  - X-Mcelog-Misc


NOTE: If broken HW results in an MCE storm of dozens and hundreds of MCEs,
mcelog will not sending them all to not overload the machine and network
traffic. If in doubt, check the local mcelog log files.


Autoyast
--------

For people making use of autoyast to spread similar installations on multiple
machines, here are some hints how to set up the email notification through
autoyast. Please read the autoyast documentation first if you are not familiar
with how to create an autoyast.xml file.

This simply sets the email address, notifications should get send to:

  <sysconfig config:type="list">
    <sysconfig_entry>
      <sysconfig_key>MCELOG_ADMIN_EMAIL</sysconfig_key>
      <sysconfig_path>/etc/sysconfig/mcelog</sysconfig_path>
      <sysconfig_value>trenn@suse.de</sysconfig_value>
    </sysconfig_entry>
 </sysconfig>


This is an example of how to set up postfix to listen on localhost and
sending/forwarding all mails coming in there through the smtp server
relay.suse.de.
The alias at the beginning forwards local machine notifications sent to root,
to trenn@suse.de. Like that mails interesting for the administrator can easily
be collected and sent to one email address. But this is just one possible mail
set up example.

<mail>
    <aliases config:type="list">
      <alias>
        <alias>root</alias>
        <destinations>trenn@suse.de</destinations>
      </alias>
    </aliases>
    <connection_type config:type="symbol">permanent</connection_type>
    <listen_remote config:type="boolean">false</listen_remote>
    <masquerade_other_domains config:type="list">
      <domain>suse.de</domain>
    </masquerade_other_domains>
    <mta config:type="symbol">postfix</mta>
    <outgoing_mail_server>relay.suse.de</outgoing_mail_server>
    <postfix_mda config:type="symbol">local</postfix_mda>
    <use_amavis config:type="boolean">false</use_amavis>
</mail>