Displaying 20 results from an estimated 23 matches for "home_directory".
2016 Apr 19
2
llvm::sys::path::home_directory() implementation for unix
I recently was using llvm code from a process that I manually spawned as a child process and noticed that llvm::sys::path::home_directory() only works if "HOME" is set in the process environment:
bool home_directory(SmallVectorImpl<char> &result) {
if (char *RequestedDir = getenv("HOME")) {
result.clear();
result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
return true;
}...
2008 Jun 25
1
deliver doesn't create home dirs
hello!
i'm trying to setup exim + dovecot's deliver for virtual users
in exim.conf:
home_directory = "/var/mail/$domain/$local_part"
command = /usr/lib/dovecot/deliver
and in logs:
No such file or directory: failed to chdir to /var/mail/symlink.ru/olfway
so why it doesn't tries to create that dir? maybe some switch can be added?
--
Pavel
2007 Jul 01
1
Differences in deliver and IMAP
...e=IMAP lip=84.45.66.158 rip=82.165.38.62
resp=AGFuZHkuc2hlbGxhbUBtYWlsbmV0d29yay5jby51awBhYzI5Y2U4NHN5ZA==
dovecot: Jul 01 16:51:46 Info: auth(default):
sql(andy.shellam at mailnetwork.co.uk,82.165.38.62): query: SELECT
<user_field> as user, <password_field> as password, <home_directory> AS
userdb_home, <mail_directory> AS userdb_mail, <chroot_directory> AS
userdb_chroot, <uid_field> AS userdb_uid, <gid_field> AS userdb_gid FROM
<user_table> WHERE <user_field> = 'andy.shellam at mailnetwork.co.uk'
dovecot: Jul 01 16:51:46 Info: aut...
2010 Nov 22
2
Confused about Maildir
I'm trying to configure Dovecot 2.0.7. In the Dovecot Wiki for Maildirs
it says that Maildirs are almost always located in ~/Maildir. I'm a
Linux end user, not a programmer, so I may be wrong in this; but isn't
the notation "~/" used for system users only to reference their home
page; /home/<user>? If that's the case, then does that mean that
Maildirs can
2015 Nov 19
2
[Path] RFC: Known directories
Hi,
llvm::sys::path allows the user to query "known directory" paths: temp,
cache, home. I was tweaking this area a bit for some time. I would like to
propose a small redesign.
What we have so far?
home_directory() tries to return what it promises. No issues with that.
system_temp_directory(true) returns a path to a directory that can be
erased on reboot. On Linux it is usually /tmp. On Windows and OSX it
returns user's temp directories as a first choice.
system_temp_directory(false) returns a path to...
2015 Nov 23
1
[Path] RFC: Known directories
...tory to just cache_directory
> * Adjust it semantics so that it can be used in cases that currently
> uses system_temp_directory(false).
> * Replace remaining uses with temp_directory.
>
> That is, in the end we would have only
>
> * temp_directory
> * cache_directory
> * home_directory
>
> What do you think?
I would be okay with that. The caller should never really care about
whether a directory is system-wide or user-specific anyway, at least
in terms of temp and cache.
Thanks!
~Aaron
2012 Sep 24
4
samba4: samba-tool and (unix) uids
Hello,
at my universities CS computer pools we're trying to migrate our
samba3 based NT domain to AD with samba4-rc1.
In the past we had a little script which our users could run on their
own from their linux account which created a samba user with
their own uid/gid and set their password (via smbpasswd).
We're trying to recreate this behaviour with "samba-tool user create"
2017 Jan 08
1
.dovecot.sieve location issue
Hello,
Here it is:
# 2.2.10: /etc/dovecot/dovecot.conf
# OS: Linux 3.14.32-xxxx-grs-ipv6-64 x86_64
first_valid_gid = 5000
first_valid_uid = 5000
lda_mailbox_autocreate = yes
lda_mailbox_autosubscribe = yes
mail_access_groups = vmail
mail_location = /home/mail/%d/%n
mail_privileged_group = vmail
managesieve_notify_capability = mailto
managesieve_sieve_capability = fileinto reject envelope
2011 Nov 08
1
Problem while log on: Windows Server 2008 R2 in samba domain
...profile_path: struct lsa_String
length : 0x0000 (0)
size : 0x0000 (0)
string : NULL
home_directory: struct lsa_String
length : 0x0000 (0)
size : 0x0000 (0)
string : NULL
home_drive: struct lsa_String...
2020 Nov 19
0
PANIC outstanding aio + key does not exist
...logon_script : *
logon_script : ''
profile_path : *
profile_path : ''
home_directory : *
home_directory : ''
home_drive : *
home_drive : ''
logon_server : *...
2020 Mar 08
2
Trouble resolving some group membership after upgrade from 4.8 to 4.10
...logon_script : ''
profile_path : *
profile_path : '\\X24\profiles\sambamatt'
home_directory : *
home_directory : '\\X24\sambamatt'
home_drive : *
home_drive : ''...
2015 Nov 23
1
[Path] RFC: Known directories
On Mon, Nov 23, 2015 at 3:07 PM, Rafael EspĂndola
<rafael.espindola at gmail.com> wrote:
>> We appear to use both system_temp_directory(true) and
>> system_temp_directory(false) in ways that seem like they could matter.
>> For instance, modules uses a temp directory that does not get erased
>> on reboot, possibly for performance reasons. Do we gain something from
2020 Oct 09
0
creating and copying users
...9;--help'.
The standard command for creating a user in the same way that ADUC does is:
samba-tool user create USERNAME PASSWORD --given-name=GIVEN_NAME
--surname=SURNAME
You can add the profile & homedir paths at the same time by adding
'--profile-path=PROFILE_PATH --home-directory=HOME_DIRECTORY' to the
command above. The path for profile must exist on the server and the
base path for the homedir must also exist. There must also be the two
relevant shares on the server.
Rowland
2008 Jul 31
0
domain trust relationship with AD 2003 and user profile and home directory problems
...length : 0x0000 (0)
size : 0x0000 (0)
string : *
string : ''
home_directory: struct lsa_String
length : 0x0000 (0)
size : 0x0000 (0)
string : *
string : '...
2010 May 26
1
Samba4 Patch: newuseradv and newgroupadv scripts for net cmd utlity
Hi all,
As per Jelmer's request - in response to bug #7455 attached diff file.
Please let me know what you think and if any modificationes need to be
performed
Regards
Luk
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: newusergroupadv.diff
URL:
2003 Sep 30
0
SUMMARY: Samba + KDE + winbind + home directories mounted off the Samba PDC - it can almost be done !! (as of September 30th 2003)
Hello Samba list !!
This is my original posting that I sent to the list about two months ago.
The summary is below.
------------------------------------------------------------------------------------
------------------------------------------------------------------------------------
Hello !!
Has anybody successfully implemented the similar setup ?
1. R.H. 7.2 (production kernel - 2.4.7-10)
2009 Aug 14
1
More Migration Questions
Hello,
I was on here a month or two ago asking lots of questions about
migrating from uw-imapd/qpopper/mbox to dovecot/maildir. I am now at the
stage where i'm trying to convert all my emails, but i have a few
questions...
Where should i convert my mbox mailboxes into? "/home/username/Maildir/"
or "/somewhere/maildirs/"?
Does it actually matter? Is there a standard
2020 Oct 09
4
creating and copying users
This topic may have been discussed many times, sorry to repeat here.
I have been trying various combinations of adding test users via ADUC. The
first three (3) added fine. Then the strange began. Many, many W10 client
re-starts throughout these process to make client capture any changes from
servers.
In one case, create the user, give him/her a password. Login from W10
client. Logout of W10
2006 May 23
2
Capistrano won''t spawn fcgi processes
...active fcgi processes and then
spawning new ones again. The shell script works fine when executed
locally on the server but running this in a Capistrano task will
simply not work.
The task is simple:
desc "ReStart Rails"
task :rails_app_restart, :roles => :app do
run "#{home_directory}/etc/rc.d/restart_rails.sh"
end
my restart_rails.sh:
if [ -e home_dir/var/run/app-0.pid ]; then kill -9 `cat home_dir/var/
run/app-0.pid`; echo ''Killed home_dir/var/run/app-0.pid''; fi
if [ -e home_dir/var/run/app-0.pid ]; then rm -f home_dir/var/run/
app-0.pid; echo '...
2020 Oct 09
2
creating and copying users
...rd command for creating a user in the same way that ADUC does is:
>
> samba-tool user create USERNAME PASSWORD --given-name=GIVEN_NAME
> --surname=SURNAME
>
> You can add the profile & homedir paths at the same time by adding
> '--profile-path=PROFILE_PATH --home-directory=HOME_DIRECTORY' to the
> command above. The path for profile must exist on the server and the
> base path for the homedir must also exist. There must also be the two
> relevant shares on the server.
>
> Rowland
>
>
>
> --
> To unsubscribe from this list go to the following URL an...