/[mailutils]/mailutils/pop3d/extra.c
ViewVC logotype

Diff of /mailutils/pop3d/extra.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.16 by gray, Fri Jul 26 11:20:49 2002 UTC revision 1.17 by polak, Mon Dec 23 22:01:35 2002 UTC
# Line 1  Line 1 
1  /* GNU mailutils - a suite of utilities for electronic mail  /* GNU Mailutils -- a suite of utilities for electronic mail
2     Copyright (C) 1999, 2001 Free Software Foundation, Inc.     Copyright (C) 1999, 2001, 2002 Free Software Foundation, Inc.
3    
4     This program is free software; you can redistribute it and/or modify     GNU Mailutils is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2, or (at your option)     the Free Software Foundation; either version 2, or (at your option)
7     any later version.     any later version.
8    
9     This program is distributed in the hope that it will be useful,     GNU Mailutils is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.     GNU General Public License for more details.
13    
14     You should have received a copy of the GNU General Public License     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software     along with GNU Mailutils; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
17    
18  #include "pop3d.h"  #include "pop3d.h"
# Line 94  pop3d_abquit (int reason) Line 94  pop3d_abquit (int reason)
94      {      {
95      case ERR_NO_MEM:      case ERR_NO_MEM:
96        pop3d_outf ("-ERR Out of memory, quitting\r\n");        pop3d_outf ("-ERR Out of memory, quitting\r\n");
97        syslog (LOG_ERR, "Out of memory");        syslog (LOG_ERR, _("Out of memory"));
98        break;        break;
99    
100      case ERR_SIGNAL:      case ERR_SIGNAL:
101        pop3d_outf ("-ERR Quitting on signal\r\n");        pop3d_outf ("-ERR Quitting on signal\r\n");
102        syslog (LOG_ERR, "Quitting on signal");        syslog (LOG_ERR, _("Quitting on signal"));
103        break;        break;
104    
105      case ERR_TIMEOUT:      case ERR_TIMEOUT:
106        pop3d_outf ("-ERR Session timed out\r\n");        pop3d_outf ("-ERR Session timed out\r\n");
107        if (state == TRANSACTION)        if (state == TRANSACTION)
108          syslog (LOG_INFO, "Session timed out for user: %s", username);          syslog (LOG_INFO, _("Session timed out for user: %s"), username);
109        else        else
110          syslog (LOG_INFO, "Session timed out for no user");          syslog (LOG_INFO, _("Session timed out for no user"));
111        break;        break;
112    
113      case ERR_NO_OFILE:      case ERR_NO_OFILE:
114        syslog (LOG_INFO, "No socket to send to");        syslog (LOG_INFO, _("No socket to send to"));
115        break;        break;
116    
117      case ERR_MBOX_SYNC:      case ERR_MBOX_SYNC:
118        syslog (LOG_ERR, "Mailbox was updated by other party: %s", username);        syslog (LOG_ERR, _("Mailbox was updated by other party: %s"), username);
119        pop3d_outf ("-ERR [OUT-SYNC] Mailbox updated by other party or corrupt\r\n");        pop3d_outf ("-ERR [OUT-SYNC] Mailbox updated by other party or corrupt\r\n");
120        break;        break;
121    
122      default:      default:
123        pop3d_outf ("-ERR Quitting (reason unknown)\r\n");        pop3d_outf ("-ERR Quitting (reason unknown)\r\n");
124        syslog (LOG_ERR, "Unknown quit");        syslog (LOG_ERR, _("Unknown quit"));
125        break;        break;
126      }      }
127    

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26