Skip to content
Snippets Groups Projects
Commit eb775e8a authored by Stephan Bosch's avatar Stephan Bosch
Browse files

lib-sieve-tool: Simplified seekable stream callback for raw mail.

No longer needed to create the temp directory.
parent 72563215
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,6 @@
#include "str-sanitize.h"
#include "strescape.h"
#include "safe-mkstemp.h"
#include "mkdir-parents.h"
#include "abspath.h"
#include "message-address.h"
#include "mbox-from.h"
......@@ -58,26 +57,12 @@ static int seekable_fd_callback
(const char **path_r, void *context)
{
struct mail_user *ruser = (struct mail_user *)context;
const char *dir, *p;
string_t *path;
int fd;
path = t_str_new(128);
mail_user_set_get_temp_prefix(path, ruser->set);
fd = safe_mkstemp(path, 0600, (uid_t)-1, (gid_t)-1);
if (fd == -1 && errno == ENOENT) {
dir = str_c(path);
p = strrchr(dir, '/');
if (p != NULL) {
dir = t_strdup_until(dir, p);
if ( mkdir_parents(dir, 0600) < 0 ) {
i_error("mkdir_parents(%s) failed: %m", dir);
return -1;
}
fd = safe_mkstemp(path, 0600, (uid_t)-1, (gid_t)-1);
}
}
if (fd == -1) {
i_error("safe_mkstemp(%s) failed: %m", str_c(path));
return -1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.