File: imap.h

package info (click to toggle)
asmail 2.1-9
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,352 kB
  • sloc: ansic: 3,050; sh: 183; makefile: 18
file content (20 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (7)
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