File: imap.h

package info (click to toggle)
asmail 2.1-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,024 kB
  • ctags: 301
  • sloc: ansic: 3,045; sh: 183; makefile: 88
file content (20 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * asmail is the AfterStep mailbox monitor
 * Copyright (c) 2002 Albert Dorofeev <albert@tigr.net>
 * For the updates see http://www.tigr.net/
 *
 * This software is distributed under GPL. For details see LICENSE file.
 */

#ifndef _IMAP_H_
#define _IMAP_H_

#include "globals.h"

#define PORT_IMAP 143
#define PORT_IMAPS 993
#define IMAP_MAILBOX_DEFAULT "INBOX"
void imap_handle( struct mbox_struct * mb );

#endif