Displaying 20 results from an estimated 20 matches for "virtual_map".
Did you mean:
virtual_maps
2018 Mar 13
0
[PATCH v2 06/27] x86/entry/64: Adapt assembly for PIE support
...ernel/relocate_kernel_64.S b/arch/x86/kernel/relocate_kernel_64.S
index a7227dfe1a2b..0c0fc259a4e2 100644
--- a/arch/x86/kernel/relocate_kernel_64.S
+++ b/arch/x86/kernel/relocate_kernel_64.S
@@ -208,11 +208,9 @@ identity_mapped:
movq %rax, %cr3
lea PAGE_SIZE(%r8), %rsp
call swap_pages
- jmp *virtual_mapped_addr(%rip)
-
- /* Absolute value for PIE support */
-virtual_mapped_addr:
- .quad virtual_mapped
+ movabsq $virtual_mapped, %rax
+ pushq %rax
+ ret
virtual_mapped:
movq RSP(%r8), %rsp
--
2.16.2.660.g709887971b-goog
2017 Mar 15
4
Postfix Ignoring lmtp, delivering straight to maildir
...ot; and it shows up in my Inbox.
On my mail host I have 1 normal user, let's say the username is
'myuser'. I have postfix configured to accept mail for several different
domains, and each domain has a lot of different mail usernames (I use
this for mailing lists and such). I use the virtual_maps feature of
postfix, and have a map file that looks like this:
abuse at dougbarton.us myuser
hostmaster at dougbarton.us myuser
dougb at dougbarton.us myuser
...
All of this works great, and mail for all the different usernames and
domains gets delivered into my one real user's Maildir, and...
2020 Sep 18
1
lmtp multiple mailboxes
Hello,
What would be the best way to implement "deliver mail to multiple
maildirs" through LMTP in Dovecot? Like in Postfix virtual_maps.
Thank you!
Best wishes,
Janis
2017 Mar 15
1
Postfix Ignoring lmtp, delivering straight to maildir
I considered sending to the postfix list instead, and would be happy to
do that if it's more appropriate.
In regards to your suggestion, I've tried local_transport and
mailbox_transport, but both result in mail bouncing because "User
doesn't exist." I've added my virtual_maps file to local_recipient_maps,
and that still doesn't work.
I did get the expected result with local_transport though (delivered to
lmtp). So I'll keep poking that a bit.
Thanks!
Doug
On 03/15/2017 10:16 AM, chaouche yacine wrote:
> Hello Doug,
> First off since this is a postf...
2012 Nov 15
3
Postfix dont work
...is
If your having the issue where you send a email to a email account on your
Ispconfig server and you receive a message like this:
Relay Access Denied State 14
You will need to double check your postfix config. Run this command below
to fix two entries in your postfix install.
postconf -e 'virtual_maps = hash:/etc/postfix/virtusertable'
postconf -e 'mydestination = /etc/postfix/local-host-names'
After that restart postfix.
service postfix restart
And you should no longer receive that message.
I do it, but now i dont get any message when i sending from gmail to my
server(somethin...
2017 Mar 15
0
Postfix Ignoring lmtp, delivering straight to maildir
...ot; and it shows up in my Inbox.
On my mail host I have 1 normal user, let's say the username is
'myuser'. I have postfix configured to accept mail for several different
domains, and each domain has a lot of different mail usernames (I use
this for mailing lists and such). I use the virtual_maps feature of
postfix, and have a map file that looks like this:
abuse at dougbarton.us myuser
hostmaster at dougbarton.us myuser
dougb at dougbarton.us myuser
...
All of this works great, and mail for all the different usernames and
domains gets delivered into my one real user's Maildir, and...
2010 Jun 30
1
Dovecot LDA/LDAP
...ser,userPassword=password,\
homeDirectory=userdb_home,uidNumber=userdb_uid,gidNumber=userdb_gid
pass_filter = (&(objectClass=posixAccount)(uid=%u))
/etc/postfix/main.cf (Virtual settings)
virtual_alias_domains = $virtual_alias_maps
virtual_alias_expansion_limit = 1000
virtual_alias_maps = $virtual_maps
virtual_alias_recursion_limit = 1000
virtual_destination_concurrency_limit =
$default_destination_concurrency_limit
virtual_destination_recipient_limit = $default_destination_recipient_limit
virtual_gid_maps = static:12
virtual_mailbox_base = /home/vmail/
virtual_mailbox_domains = /etc/postfix/do...
2013 Nov 06
1
Postfix delivers mails to maildir and not to dovecot LDA for a virtual user
..._use_tls = yes
tls_random_source = dev:/dev/urandom
transport_maps = pgsql:/etc/postfix/transport.cf
virtual_gid_maps = pgsql:/etc/postfix/gids.cf
virtual_mailbox_base = /home
virtual_mailbox_domains = mydomain.com
*virtual_mailbox_maps = pgsql:/etc/postfix/mailboxes.cf
<http://mailboxes.cf>*
virtual_maps = pgsql:/etc/postfix/virtual.cf
*virtual_transport = dovecot*
virtual_uid_maps = pgsql:/etc/postfix/uids.cf
I have included the virtual_transport parameter to indicate that dovecot is
running as LDA. I have also included the pgsql query file in the
virtual_mailbox_maps parameter.
My *mailboxes.c...
2007 Jun 07
1
User unknown in local recipient table? Dovecot LDA/Postfix
This probably is a postfix problem, but I think there are lots of postfix
experts/users on this list, and have heard a lot good things about this
list, so I am just giving it a try. Thanks in advance!
I am using dovecot-1.0.0-8_56.src.rpm downloaded from atrpms.net, and
rebuilt from it(rpmrebuild ...). Postfix is 2.4.3.
I followed documents at http://wiki.dovecot.org/LDA and LDA/Postfix, and
2018 Mar 13
32
[PATCH v2 00/27] x86: PIE support and option to extend KASLR randomization
Changes:
- patch v2:
- Adapt patch to work post KPTI and compiler changes
- Redo all performance testing with latest configs and compilers
- Simplify mov macro on PIE (MOVABS now)
- Reduce GOT footprint
- patch v1:
- Simplify ftrace implementation.
- Use gcc mstack-protector-guard-reg=%gs with PIE when possible.
- rfc v3:
- Use --emit-relocs instead of -pie to reduce
2018 Mar 13
32
[PATCH v2 00/27] x86: PIE support and option to extend KASLR randomization
Changes:
- patch v2:
- Adapt patch to work post KPTI and compiler changes
- Redo all performance testing with latest configs and compilers
- Simplify mov macro on PIE (MOVABS now)
- Reduce GOT footprint
- patch v1:
- Simplify ftrace implementation.
- Use gcc mstack-protector-guard-reg=%gs with PIE when possible.
- rfc v3:
- Use --emit-relocs instead of -pie to reduce
2009 Aug 15
11
Postfix : lda problem
Hi,
I come back with my problem:
On debian lenny, using dovecot 1.1.13-2~bpo50+1 I try to configure my
setup (with Postfix virtual
domains) to use dovecot as lda but nothing happens, as if postfix not
delegate to dovecot
I am using the contreol panel alternc (http://www.alternc.org).
All the maildir are in the format
/var/alternc/mail/i/info_domainepublic.net for info at domainepublic.net
The
2018 May 23
33
[PATCH v3 00/27] x86: PIE support and option to extend KASLR randomization
Changes:
- patch v3:
- Update on message to describe longer term PIE goal.
- Minor change on ftrace if condition.
- Changed code using xchgq.
- patch v2:
- Adapt patch to work post KPTI and compiler changes
- Redo all performance testing with latest configs and compilers
- Simplify mov macro on PIE (MOVABS now)
- Reduce GOT footprint
- patch v1:
- Simplify ftrace
2006 May 25
2
tls not working with postfix in chroot mode on centos4.0
..._code = 550
unknown_virtual_alias_reject_code = 550
unknown_virtual_mailbox_reject_code = 550
unverified_recipient_reject_code = 450
unverified_sender_reject_code = 450
verp_delimiter_filter = -=+
virtual_alias_domains = $virtual_alias_maps
virtual_alias_expansion_limit = 1000
virtual_alias_maps = $virtual_maps
virtual_alias_recursion_limit = 1000
virtual_destination_concurrency_limit = $default_destination_concurrency_limit
virtual_destination_recipient_limit = $default_destination_recipient_limit
virtual_gid_maps =
virtual_mailbox_base =
virtual_mailbox_domains = $virtual_mailbox_maps
virtual_mailbox...
2015 Jan 23
2
sieve filter not working
HI,
> You could set
>
> syslog_facility = local5
>
> and have all the log messages in the messages file.
According to the output of command
# doveadm log find
every type of message goes to the file I was looking at, "/var/spool/maillog".
>> So, is it postfix doing the local mail delivery, not dovecot?
>>
> To answer this question please post relevant
2017 Oct 04
28
x86: PIE support and option to extend KASLR randomization
These patches make the changes necessary to build the kernel as Position
Independent Executable (PIE) on x86_64. A PIE kernel can be relocated below
the top 2G of the virtual address space. It allows to optionally extend the
KASLR randomization range from 1G to 3G.
Thanks a lot to Ard Biesheuvel & Kees Cook on their feedback on compiler
changes, PIE support and KASLR in general. Thanks to
2017 Oct 04
28
x86: PIE support and option to extend KASLR randomization
These patches make the changes necessary to build the kernel as Position
Independent Executable (PIE) on x86_64. A PIE kernel can be relocated below
the top 2G of the virtual address space. It allows to optionally extend the
KASLR randomization range from 1G to 3G.
Thanks a lot to Ard Biesheuvel & Kees Cook on their feedback on compiler
changes, PIE support and KASLR in general. Thanks to
2017 Oct 11
32
[PATCH v1 00/27] x86: PIE support and option to extend KASLR randomization
Changes:
- patch v1:
- Simplify ftrace implementation.
- Use gcc mstack-protector-guard-reg=%gs with PIE when possible.
- rfc v3:
- Use --emit-relocs instead of -pie to reduce dynamic relocation space on
mapped memory. It also simplifies the relocation process.
- Move the start the module section next to the kernel. Remove the need for
-mcmodel=large on modules. Extends
2017 Oct 11
32
[PATCH v1 00/27] x86: PIE support and option to extend KASLR randomization
Changes:
- patch v1:
- Simplify ftrace implementation.
- Use gcc mstack-protector-guard-reg=%gs with PIE when possible.
- rfc v3:
- Use --emit-relocs instead of -pie to reduce dynamic relocation space on
mapped memory. It also simplifies the relocation process.
- Move the start the module section next to the kernel. Remove the need for
-mcmodel=large on modules. Extends
2013 Mar 14
8
Question regarding Postfix and Dovecot
..._limit
uucp_recipient_refill_delay = $default_recipient_refill_delay
uucp_recipient_refill_limit = $default_recipient_refill_limit
uucp_time_limit = $command_time_limit
verp_delimiter_filter = -=+
virtual_alias_domains = $virtual_alias_maps
virtual_alias_expansion_limit = 1000
virtual_alias_maps = $virtual_maps
virtual_alias_recursion_limit = 1000
virtual_delivery_slot_cost = $default_delivery_slot_cost
virtual_delivery_slot_discount = $default_delivery_slot_discount
virtual_delivery_slot_loan = $default_delivery_slot_loan
virtual_destination_concurrency_failed_cohort_limit =
$default_destination_concurr...