search for: existing_user

Displaying 2 results from an estimated 2 matches for "existing_user".

2011 Dec 05
2
How to bypass a create record after validation wo error ?
...y registered w this email, target_subdomain = Subdomain.find(self.subdomain_id) unless target_subdomain.members.where(;email => self;email).empty? record.errors[:email] << "is already a member" # error else # user is not a not a member of this subdomain.... existing_user = User.where(:email => self.email).first # get existing user record target_subdomain.members << existing_user # THEN I WOULD LIKE TO BYPASS THE CREATION.... w no error is there a way to do it ... ? it would simplify my sign up process , only one form, only one process... th...
2020 Nov 11
0
Support TLS for pure remote doveadm commands
...service doveadm { inet_listener { port = 9091 } } doveadm_password=VeryRandomString ``` - On B, create a file X containing (only): ``` doveadm_password=VeryRandomString ``` - On B, running `doveadm -c X mailbox list -u ${existing_user} -S ${A}:9091` should return the mailbox list - Switching to TLS: - Replace what was added to A's dovecot configuration (and reload it) with: ``` service doveadm { inet_listener { port = 9091 ssl = yes } } doveadm_...