Commit | Line | Data |
---|---|---|
b40316f9 | 1 | <? |
2 | include("../config/config.php"); | |
3 | include("../functions/strings.php"); | |
4 | include("../functions/page_header.php"); | |
5 | include("../functions/imap.php"); | |
6 | ||
2aa12d5e | 7 | $imapConnection = loginToImapServer($username, $key, $imapServerAddress); |
54e3c1d8 | 8 | fputs($imapConnection, "1 create \"$subfolder.$folder_name\"\n"); |
b40316f9 | 9 | fputs($imapConnection, "1 logout\n"); |
10 | ||
11 | echo "<BR><BR><A HREF=\"folders.php\">Return</A>"; | |
12 | ?> | |
13 | ||
14 |