X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Finc.c;h=2a866e925867497638a42f80b770fd2465aa64e1;hp=9e6fb6f0db321f46c611cc5e0d0fcf7d6e70ff1b;hb=d39e2c447b0d163a5a63f480b23d06edb7a73aa0;hpb=6e8aba3714fe8ffc21dbb75ea9efdc41ab87b07f diff --git a/uip/inc.c b/uip/inc.c index 9e6fb6f..2a866e9 100644 --- a/uip/inc.c +++ b/uip/inc.c @@ -192,7 +192,7 @@ main(int argc, char **argv) case AUDSW: if (!(cp = *argp++) || *cp == '-') adios(NULL, "missing argument to %s", argp[-2]); - audfile = getcpy(m_maildir(cp)); + audfile = getcpy(expanddir(cp)); continue; case NAUDSW: audfile = NULL; @@ -223,7 +223,7 @@ main(int argc, char **argv) if (!(cp = *argp++) || *cp == '-') adios(NULL, "missing argument to %s", argp[-2]); - from = path(cp, TFILE); + from = getcpy(expanddir(cp)); /* ** If the truncate file is in default state, @@ -265,7 +265,7 @@ main(int argc, char **argv) if (folder) adios(NULL, "only one folder at a time!"); else - folder = pluspath(cp); + folder = getcpy(expandfol(cp)); } else { adios(NULL, "usage: %s [+folder] [switches]", invo_name); @@ -286,9 +286,9 @@ main(int argc, char **argv) if (from) newmail = from; else if ((newmail = getenv("MAILDROP")) && *newmail) - newmail = m_mailpath(newmail); + newmail = toabsdir(newmail); else if ((newmail = context_find("maildrop")) && *newmail) - newmail = m_mailpath(newmail); + newmail = toabsdir(newmail); else { newmail = concat(MAILDIR, "/", MAILFIL, NULL); } @@ -301,8 +301,8 @@ main(int argc, char **argv) newmail = cp; if (!folder) - folder = getfolder(FDEF); - maildir = m_maildir(folder); + folder = getdeffol(); + maildir = toabsdir(folder); if ((maildir_copy = strdup(maildir)) == (char *)0) adios(maildir, "error allocating memory to copy maildir");