view src/lib/var-expand.h @ 1329:ae229b7acb4c HEAD

Mailbox names are now sent through imap-quoter instead of just escaping it. This means that mailbox names that would require escapes are instead sent as literals now.
author Timo Sirainen <tss@iki.fi>
date Wed, 02 Apr 2003 05:05:38 +0300
parents c077254cbe66
children 5e0167577399
line wrap: on
line source

#ifndef __VAR_EXPAND_H
#define __VAR_EXPAND_H

/* Expand % variables in str:

    %u user or user@domain
    %h home
    %n user
    %d domain */
void var_expand(string_t *dest, const char *str,
		const char *user, const char *home);

#endif