Displaying 20 results from an estimated 37 matches for "local_users".
Did you mean:
local_user
2006 May 15
2
[PATCH 10/12 bugfix: openssh-4.3p2: memory leak
The variable local_user was allocated by xstrdup and is not freed or
pointed to in this branch. This patch adds the xfree. This entire set
of patches passed the regression tests on my system. Bug found by
Coverity.
Signed-off-by: Kylene Hall <kjhall at us.ibm.com>
---
sshconnect.c | 1 +
1 files changed, 1 insertion(+)
diff -uprN openssh-4.3p2/sshconnect.c
2010 Mar 04
1
ADS integration and local users...
Hello,
I have a Debian server with Samba. I've put this server in AD. Everything
is ok for domain users, but I can't connect with a local user !!!
I've created this local user :
# adduser local_user
# smbpasswd -a local_user
Then :
# smbclient \\\\192.0.0.1\\ressource -U local_user
Enter local_user's password:
Domain=[MY_DOMAIN] OS=[Unix] Server=[Samba 3.2.5]
tree connect failed:
2016 Nov 16
2
Exim still accepting emails to nonexistent users
After adding the configuration bit:
deny
message = invalid recipient
domains = +local_domains
!verify = recipient/callout=no_cache
from: http://wiki2.dovecot.org/LMTP/Exim <http://wiki2.dovecot.org/LMTP/Exim> running update-exim4.conf and service exim4 restart
the server is still accepting emails to recipients that do not exist in dovecot.
Any ideas?
2016 Nov 21
2
Exim still accepting emails to nonexistent users
Hi Heiko,
Here is the router:
virtual_aliases:
driver = redirect
debug_print = "R: Check address using virtual_aliases for $local_part@$domain"
allow_fail
allow_defer
hide data = CHECK_VIRTUAL_ALIASES
user = vmail
group = mail
local_user:
debug_print = "R: local_user for $local_part@$domain"
driver = accept
2006 May 08
3
operator overload on views
In my User auth scheme I have a userlevel. I''ve overloaded the User
class operators like this:
def >(item)
if item.class == "User"
self.userlevel > item.userlevel
else
self.userlevel > item
end
end
(other operators are overloaded in essentially the same way). As I
understand it, using the operator ">" inside the overloaded
2005 Apr 28
11
Three NIC problem
Hi!
I have setup a router with 3 NIC:
inet->eth0->eth1-local_users
->eth2-DMZ_server
I have also setup dhcp and DNS on the router. DHCP is server only for eth1
while on eth2 I have static IP address. So everything works except
connecting local_users on eth1 to Samba shares on the server in DMZ by
server name. Yes, I have it in my DNS records to point to...
2011 Jan 16
5
Smart IMAP proxying with imapc storage
I just committed a very early initial implementation of "imapc" storage
backend to v2.1 hg: http://hg.dovecot.org/dovecot-2.1
You can't really do anything except open INBOX and read mails from it,
so it's currently only intended for initial testing. It sucks in many
ways right now, but I'll be improving it.
The idea is that you could set for example:
mail_location =
2016 Nov 07
2
Redirect the emails from domain2 to domain1
...main_old to a domain_new. I'd like to redirect all the emails from
domain_old to the local mailboxes of users @ domain_new. In exim I've
assumed that it is enough to add domain_old to the list of local domains:
domainlist local_domains = @ : domain_new : domain_old
...
begin routers
...
local_users:
debug_print = "R: local_user for $local_part@$domain"
driver = accept
domains = +local_domains
transport = dovecot_lmtp
cannot_route_message = Unknown user
However in Dovecot I'm checking both the username and the domain to
perform the authentication:
auth_username_f...
2016 Nov 23
0
Exim still accepting emails to nonexistent users
Hi Heiko,
Sorry for using your private email address. :/
I managed to get this working using local_user changes by adding ldap user
verification there:
local_user:
debug_print = "R: local_user LDAP lookup for $local_part@$domain"
driver = accept
domains = +local_domains
condition = CHECK_VIRTUAL_USER
transport = dovecot_lmtp
cannot_route_message = Unknown user
Where
2019 Mar 26
0
No, still glitches for exim/winbind...
No, i don't think this is a configuration error by mine, and still
seems that ''something'' in winbind does not work properly, or at least
in respect to exim.
This late evening i've rebooted all my servers in a site (2DM, 2DC; DM
samba 4.8, DC samba 4.5).
I've firstly rebooted the DM (where one of these is the mail server),
after that, and after verify that all work
2016 Nov 21
2
Exim still accepting emails to nonexistent users
Hi,
Heiko Schlittermann <hs at schlittermann.de> (Mo 21 Nov 2016 11:50:13 CET):
> a) Routing stage
> You need to interact with the user database dovecot uses.
> Either you access the user database directory (flat file, LDAP,
> whatever) or you use the ${readsocket?} feature of Exim to talk to
> dovecot.
The readsocket trick doesn't seem to work anymore.
Using
$
2015 Aug 05
2
2.2.18: Mailbox INBOX sync: mailbox_delete failed: INBOX can't be deleted.
Hello
I have 2.2.18 built with:
./configure \
--prefix="$prefix" \
--bindir="$prefix/bin" \
--sbindir="$prefix/bin" \
--sysconfdir="/etc" \
--with-storages="maildir,imapc,pop3c" \
--without-vpopmail \
--without-ldap
I'm attempting to sync (backup) from another Dovecot server running version
2.0.21:
Both servers
2018 Dec 10
2
[PATCH] cleanup of global variables server/client_version_string in sshconnect.c
In sshconnect.c there are two global variables for server_version_string
client_version_string.
These are used just in a few functions and can easily be passed as
parameters.
Also, there is a strange construct, where their memory is allocated to
the global pointers, then copies of these pointers are assigned to the
kex structure. The kex_free finally frees them via cleanup of the kex
2007 Jan 26
1
Ubuntu, Exim, deliver: permissions/setgid problem
Hello all,
I have a little problem. I'm trying to set up Dovecot deliver (1.0 beta
3) as the LDA for Exim4 on Ubuntu 6.06 with MBOX, and I'm running into
permissions problems. Exim typically wants to run pipes as the user to
whom the mail is being delivered (as per the "check_local_user").
deliver needs access to the auth socket and needs to be able to create
files in /var/mail.
2016 Nov 21
0
Exim still accepting emails to nonexistent users
Hi Marti,
(Please do not send CC to my private account)
Marti Markov <marti1234 at gmail.com> (Mo 21 Nov 2016 03:52:54 CET):
>
> Here is the router:
>
> virtual_aliases:
?
> hide data = CHECK_VIRTUAL_ALIASES
> local_user:
> debug_print = "R: local_user for $local_part@$domain"
> driver = accept
> domains = +local_domains
>
2001 Oct 23
1
Connection Timeout
This is my first post so first of all I will say hello to everyone.
I have rsync configured and working properly on my local network however
when I try to connect from a remote host (one located in a different state)
the connection times out. I was wondering if there was another way to set
the timeout besides in the rsyncd.conf file?
As I said the connection works fine on the internal lan, but
2012 Nov 08
3
pop3 exim4 dovecot
Hi,
I have an exim4 and dovecot system. The system has multiple accounts.
Exim4 is receiving emails in the /var/mail/user files and dovecot is
configured to use /home/user/mail (mbox) folder.
I have one account that dovecot is not processing replies/bounces/etc...
The data is being written in the /var/mail/user file by exim4 but as far
as dovecot is aware there is nothing in the pop3 inbox.
2020 Jan 22
2
Using dsync for a single mailbox?
On Tue, 21 Jan 2020, Sami Ketola wrote:
> how does dsync fail? How have you tried? Something like this on the new
> server:
>
> doveadm -o imapc_server=remote_ip -o imapc_port=remote_port -o imapc_user=<remote_victim> -o imapc_password=<remote_victim_password> backup -u <local_victim> -R imapc:
The best I can do is get it to complete without any errors but without
2010 Jan 12
2
[patch] Automatically add keys to agent
My keys are secured with a passphrase. That's good for security, but
having to type the passphrase either at every login or at every
invocation of ssh(1) is annoying.
I know I could invoke ssh-add(1) just before invoking ssh(1), if I keep
track of whether I invoked it already, or write some hacky scripts; but
the rest of OpenSSH is wonderfully usable without any hacks.
Hence, this patch.
2007 Jan 04
1
samba fails to start.
After a hiccup or two with Samba not wanting to restart, I opted to
look for a pid/lock file and found none.
Tried to correct by restarting the server and had no success with
samba restarting.
There are no errors in smbd.log
I did apt-get upgrade. No help
I did apt-get remove samba, samba and swat went away.
I did note that the XXXX pid was not found during install when samba
was to be killed.