search for: example1

Displaying 20 results from an estimated 326 matches for "example1".

Did you mean: example
2018 Sep 11
5
How to send mail to mailbox with disabled domain?
Given the following: mailboxes: user1 at example1.com user2 at example1.com user3 at example1.com etc. aliases: whatever at example1.com -> user1 at example1.com whatever at example2.com -> user1 at example1.com whatever at example3.com -> user1 at example1.com Now the problem: example1.com MX goes elsewhere (doesn't point to this s...
2016 Apr 07
0
Filserver in Domain-trusts
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I have setup two domains (example1.net) and (example2.net). Then I created a trust, in two different ways (Yes, one after the other, not at the same time): 1. samba-tool domain trust create example2 --type=forest --direction=both - --create-location=both -U administrator at EXAMPLE2.NET 2. samba-tool domain trust create EXAMPLE2.N...
2013 May 28
1
Perfect LDAP tree
Hello everybody and Timo. I have the next problem. With LDAP tree like ou=mail | - dc=example1.com,ou=Mail | - mail=box1 at example1.com,dc=example1.com,ou=Mail | - mail=box2 at example1.com,dc=example1.com,ou=Mail ? | - dc=example2.com,ou=Mail | - mail=box1 at example2.com,dc=example2.com,ou=Mail | - mail=box2 at example2.com,dc=example2.com,ou=Mail ? and settings in dovec...
2004 Aug 06
0
Can connect to example1.ogg but not example1.ogg.m3u
Check your <hostname> setting in the icecast2 config, I believe that is used in the building of the m3u...you also might want to use wget to retrieve 10.1.1.101:8000/example1.ogg.m3u and take a look at the file... oddsock At 02:12 PM 4/28/2004, you wrote: >I have just finished setting up ices2 => icecast 2 on RH9 linux. >Have 10 or so .ogg tracks in a playlist. >Also downloaded a full copy of winamp 5. >If I point my browser at >10.1.1.101:8000/examp...
2018 Sep 11
0
How to send mail to mailbox with disabled domain?
Is this a dovecot problem on your side? dovecot usually accepts mail from MTA like postfix, so it would be better to remove example1.com from postfix relaydomains (mailbox domains, alias domains, ...). Then there is no delivery to dovecot. Most MTAs ignore MX records - if a domain is configured locally, it gets delivered. Best regards Gerald > Am 11.09.2018 um 20:20 schrieb Kai Schaetzl <maillists at conactive.com>: &...
2018 Sep 11
1
How to send mail to mailbox with disabled domain?
Gerald Galster wrote on Tue, 11 Sep 2018 20:49:17 +0200: > Is this a dovecot problem on your side? dovecot usually accepts mail > from MTA like postfix, so it would be better to remove example1.com from > postfix relaydomains (mailbox domains, alias domains, ...). Then there > is no delivery to dovecot. Most MTAs ignore MX records - if a domain is > configured locally, it gets delivered. Thanks for your reply. I don't want the MTA to deliver that domain. As an email address....
2004 Aug 06
2
Can connect to example1.ogg but not example1.ogg.m3u
I have just finished setting up ices2 => icecast 2 on RH9 linux. Have 10 or so .ogg tracks in a playlist. Also downloaded a full copy of winamp 5. If I point my browser at 10.1.1.101:8000/example1.ogg.m3u then winamp opens, and just says Connecting... - it never actually plays anything. If I use the open URL feature in winamp and give it 10.1.1.101:8000/example1.ogg Then winamp connects to the stream and plays the music fine. I have been watching the icecast log file and noticed the follow...
2011 Dec 04
1
syncing imap servers with imapsync
...- 1 anvil scache unix - - n - 1 scache amavis unix - - - - 2 smtp -o smtp_data_done_timeout=1200 -o smtp_send_xforward_command=yes [root at mail3 skins]# imapsync --syncinternaldates --host1 mail.example1.com --user1 bluethundr --password1 secret --host2 roundcube.example2.com --user2 bluethundr --password2 secret [root at mail3 skins]# imapsync --syncinternaldates --host1 mail.example1.com --user1 bluethundr --password1 secret --host2 roundcube.example2.com --user2 bluethundr --password2 secret $RC...
2017 Apr 28
2
SAN certificates for multiple domains and multiple services
...verything under /etc/letsencrypt/live to root:certs. Then, when a system user has to access this stuff, I simply add him to the certs group. Then came a moment when I hit a wall, because Postfix can't handle multiple certificates, only one. Let's say I have these domains on my server: * example1.com * example2.com * example1.net * example2.net When setting up Postfix, I can do one of these things: 1. continue to use a self-signed SSL certificate 2. choose one "preferred" domain on my server 3. setup multi-domain (SAN) certificates I tried the SAN certificates (after ex...
2006 Jul 17
2
help for creating sendmail virtual users
hey friends, I have installed sendmail or it would rather say it comes default with the centos. I am using Centos4.0 and I am trying to configure sendmail with virtual users. I have created few users for my domain. My internal domain (example.com) is different from my isp domain (example1.com). The problem I am facing is that if the user1 at example1.com sends the mail to the user2 at example1.com then the mails should not go to the ISP rather the server running sendmail should send it to the mailbox of the user2 at example1.com but rather it is sending it to the ISP account and fr...
2007 May 15
1
stacked barplot with positive and negatvie values
Hello I'm trying to create a barplot with a couple of stacked positive values and with one negative value for each group. example: trees<-c(20,30,10) shrubs<-c(12,23,9) veg<-c(2,3,4) soil<-c(-100,-123,-89) example1<-t(cbind(trees,shrubs,veg)) barplot(example1) #this works so far #but now: example2<-t(cbind(trees,shrubs,veg,soil)) barplot(example2) This shows no more stacked bars. But I want to keep the bars like example1 and just add the negative values which have another scale downwards. So I tr...
2013 Apr 11
2
[LLVMdev] Decouple LoopVectorizer from O3
...gestion by changing the condition to : 189 if (LoopVectorize && OptLevel >= 0) 190 MPM.add(createLoopVectorizePass()); and compiled. Then I used the following command: opt -mtriple=x86_64-linux-gnu -vectorize-loops -vectorizer-min-trip-count=6 -debug-only=loop-vectorize -O1-S -o example1_vect.s example1.s where example1.s is IR generated by clang -S -emit-llvm example1.c example1.c contains the following loop: for(int i=0;i<SIZE;i++) { aa[i] = bb[i] + count; count++; printf("a[%d] is %d", i,aa[i]); }...
2011 Jun 27
4
[Bug 1916] New: Wish: support multiple alternative hostnames for a given host alias (useful with NAT)
...ifferent IP addresses, and different canonical DNS entries, depending on which side of the (NAT) firewall you are connecting from. It would be nice to have a single Host entry in the ssh/config file that would cope with multiple hostname alternatives, and try first one, then the other. eg: Host example1 Hostname example1 Hostname example1.no-ip.org Port 2222 What this should do is allow me to type "ssh example1" and then: * If I am at home, inside my NAT firewall, it should try to connect to the machine named "example1" (according to the DNS entry in my broa...
2009 Jan 05
1
login fails when username has apostrophe
...g LDAP with the following details: dovecot version 1.1.7 openldap client library 2.4.11 With auth_verbose = yes and auth_debug = yes set I see the following in the logs. Note the initial escaped apostrophe and the subsequent escaped escape in the filter! ----- start log ----- Jan 5 16:15:05 www-example1 dovecot: auth(default): client in: AUTH 1 PLAIN service=imap lip=10.1.1.180 rip=10.3.96.60 lport=143 rport=48733 resp=<hidden> Jan 5 16:15:05 www-example1 dovecot: auth(default): ldap(julie.o \'reilly at example.com,10.3.96.60): pass search: base=dc=example, dc=com...
2018 Sep 12
0
How to send mail to mailbox with disabled domain?
On 09/11/2018 08:20 PM, Kai Schaetzl wrote: > I have to disable mail acceptance for example1.com. > If not, mail sent *from* that server (e.g. from a web form) to that domain > will not leave the server. > However, if I disable example1.com for mail dovecot lmtp will not deliver > mail to this mail box anymore, although the mailbox still exists. First and foremost, you are...
2013 Apr 11
2
[LLVMdev] Decouple LoopVectorizer from O3
...; > 189 if (LoopVectorize && OptLevel >= 0) > 190 MPM.add(createLoopVectorizePass()); > > and compiled. Then I used the following command: > > opt -mtriple=x86_64-linux-gnu -vectorize-loops > -vectorizer-min-trip-count=6 -debug-only=loop-vectorize -O1-S -o > example1_vect.s example1.s > > where example1.s is IR generated by > > clang -S -emit-llvm example1.c > > example1.c contains the following loop: > > for(int i=0;i<SIZE;i++) > { > aa[i] = bb[i] + count; > count++; > p...
2013 Apr 11
0
[LLVMdev] Decouple LoopVectorizer from O3
...> 189 if (LoopVectorize && OptLevel >= 0) > 190 MPM.add(createLoopVectorizePass()); > > and compiled. Then I used the following command: > > opt -mtriple=x86_64-linux-gnu -vectorize-loops > -vectorizer-min-trip-count=6 -debug-only=loop-vectorize -O1-S -o > example1_vect.s example1.s > > where example1.s is IR generated by > > clang -S -emit-llvm example1.c > > example1.c contains the following loop: > > for(int i=0;i<SIZE;i++) > { > aa[i] = bb[i] + count; > count++; >...
2019 Jan 01
0
[PATCH nbdkit] plugins, filters: Define and use NBDKIT_HANDLE_NOT_NEEDED.
...code. --- docs/nbdkit-filter.pod | 3 ++- docs/nbdkit-plugin.pod | 3 ++- include/nbdkit-common.h | 5 +++++ filters/cache/cache.c | 7 +------ filters/cow/cow.c | 7 +------ filters/error/error.c | 4 +--- plugins/example1/example1.c | 7 +++---- plugins/floppy/floppy.c | 7 +------ plugins/full/full.c | 4 +--- plugins/iso/iso.c | 7 +------ plugins/memory/memory.c | 5 +---- plugins/null/null.c | 4 +--- plugins/partitioning/partition...
2013 Feb 26
1
答复: how to dynamic update or refresh vfs_fn_pointers and ntvfs_ops stacks
[test] comment = VFS TEST path = /data writeable = yes browseable = yes vfs objects = example:example1 example example:test example1: parameter = 1 example: parameter = 5 test: parameter = 7 for example, when change the example1: parameter = 2, how to change or update the already constructed handler. ???: Liujun (A) ????: 2013?2?25? 20:59 ???: 'samba at lists.samba.org' ??: how to dynamic...
2014 Sep 23
0
[PATCH 03/13] syntax-check: fix makefile_at_at_check
...rlang/examples/Makefile.am +++ b/erlang/examples/Makefile.am @@ -35,8 +35,8 @@ stamp-guestfs-erlang.pod: guestfs-erlang.pod create_disk.erl inspect_vm.erl --section 3 \ --man guestfs-erlang.3 \ --html $(top_builddir)/html/guestfs-erlang.3.html \ - --verbatim $(srcdir)/create_disk.erl:@EXAMPLE1@ \ - --verbatim $(srcdir)/inspect_vm.erl:@EXAMPLE2@ \ + --verbatim $(srcdir)/create_disk.erl:$(EXAMPLE1) \ + --verbatim $(srcdir)/inspect_vm.erl:$(EXAMPLE2) \ --license examples \ $< touch $@ diff --git a/examples/Makefile.am b/examples/Makefile.am index e150a58..70363af 100644 -...