-/*
+/* credentials.c -- wrap configurable access to .netrc or similar files.
+ *
* This code is Copyright (c) 2013, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
* complete copyright information.
credentials_file =
concat (mypath ? mypath : ".", "/", filename, NULL);
if (stat (credentials_file, &st) != OK) {
- admonish (NULL, "unable to find credentials file %s",
+ inform("unable to find credentials file %s, continuing...",
filename);
}
}
*/
creds->user = user == NULL ? NULL : mh_xstrdup(user);
} else {
- admonish (NULL, "unknown credentials style %s", cred_style);
+ inform("unknown credentials style %s, continuing...", cred_style);
return NULL;
}