imapext-2007

diff src/osdep/vms/os_vms.c @ 0:ada5e610ab86

imap-2007e
author yuuji@gentei.org
date Mon, 14 Sep 2009 15:17:45 +0900
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/osdep/vms/os_vms.c	Mon Sep 14 15:17:45 2009 +0900
     1.3 @@ -0,0 +1,76 @@
     1.4 +/* ========================================================================
     1.5 + * Copyright 1988-2006 University of Washington
     1.6 + *
     1.7 + * Licensed under the Apache License, Version 2.0 (the "License");
     1.8 + * you may not use this file except in compliance with the License.
     1.9 + * You may obtain a copy of the License at
    1.10 + *
    1.11 + *     http://www.apache.org/licenses/LICENSE-2.0
    1.12 + *
    1.13 + * 
    1.14 + * ========================================================================
    1.15 + */
    1.16 +
    1.17 +/*
    1.18 + * Program:	Operating-system dependent routines -- VMS version
    1.19 + *
    1.20 + * Author:	Mark Crispin
    1.21 + *		Networks and Distributed Computing
    1.22 + *		Computing & Communications
    1.23 + *		University of Washington
    1.24 + *		Administration Building, AG-44
    1.25 + *		Seattle, WA  98195
    1.26 + *		Internet: MRC@CAC.Washington.EDU
    1.27 + *
    1.28 + * Date:	2 August 1994
    1.29 + * Last Edited:	30 August 2006
    1.30 + */
    1.31 + 
    1.32 +#include "tcp_vms.h"		/* must be before osdep includes tcp.h */
    1.33 +#include "mail.h"
    1.34 +#include "osdep.h"
    1.35 +#include <stdio.h>
    1.36 +#include <sys/time.h>
    1.37 +#include <sys/stat.h>
    1.38 +#include <sys/socket.h>
    1.39 +#include <netinet/in.h>
    1.40 +#include <arpa/inet.h>
    1.41 +#include <netdb.h>
    1.42 +#include <ctype.h>
    1.43 +#include <errno.h>
    1.44 +extern int errno;		/* just in case */
    1.45 +#include "misc.h"
    1.46 +
    1.47 +
    1.48 +#include "fs_vms.c"
    1.49 +#include "ftl_vms.c"
    1.50 +#include "nl_vms.c"
    1.51 +#include "env_vms.c"
    1.52 +#include "tcp_vms.c"
    1.53 +
    1.54 +#define server_login(user,pass,authuser,argc,argv) NIL
    1.55 +#define authserver_login(user,authuser,argc,argv) NIL
    1.56 +#define myusername() ""		/* dummy definition to prevent build errors */
    1.57 +#define MD5ENABLE ""
    1.58 +
    1.59 +#include "auth_md5.c"
    1.60 +#include "auth_pla.c"
    1.61 +#include "auth_log.c"
    1.62 +
    1.63 +
    1.64 +/* Emulator for UNIX getpass() call
    1.65 + * Accepts: prompt
    1.66 + * Returns: password
    1.67 + */
    1.68 +
    1.69 +#define PWDLEN 128		/* used by Linux */
    1.70 +
    1.71 +char *getpass (const char *prompt)
    1.72 +{
    1.73 +  char *s;
    1.74 +  static char pwd[PWDLEN];
    1.75 +  fputs (prompt,stdout);
    1.76 +  fgets (pwd,PWDLEN-1,stdin);
    1.77 +  if (s = strchr (pwd,'\n')) *s = '\0';
    1.78 +  return pwd;
    1.79 +}

UW-IMAP'd extensions by yuuji