Displaying 20 results from an estimated 4000 matches similar to: "can we setup a proxy user in samba"
2014 Jan 10
1
Message filtering capability at IMAP proxy
Hi,
I would like process the messages at Dovecot IMAP proxy. In one of the
documents, it was mentioned that Dovecot proxy currently supports on the
fly message filtering in latest releases. Will it it possible to extend the
filtering feature to handle the following requirements.
1. Parse the email at IMAP proxy.
2. Replace the links with some other secure links.
3. Replace the attachments with
2013 Nov 05
2
Provide access to /home folder
I have a CentOS linux web server in which I have multiple web sites. I have
many website programmers now doing the coding for all the sites. How can I
provide a key-based authentication for the programmers in such a way that
they have access only to /home folder ? They should be able to access only
all the files inside /home and able to modify it. This is cPanel server in
which all the sites comes
2009 Dec 21
0
[LLVMdev] llvm.org outage
Dear LLVMers,
There is some scheduled network outages detailed below that affect the llvm.org servers and LLVM Mailing lists. The LLVM server is housed on the fourth floor. I am not sure which rooms house the mailing list servers. All times are Central Standard Time.
If someone from Illinois can distill the relevant parts of this message for LLVM users, I would be most appreciative. I am out
2014 Jan 17
1
Dovecot IMAP proxy for gmail IMAP server
Hi All,
I am experimenting to use Dovecot as an IMAP proxy to GMAIL server. I would
like configure my localhost as an Dovecot IMAP proxy and trying to access
my GMAIL using the Thunderbird email client. Please share the steps to
configure and access my mails from GMAIL server.
- Thanks
CM Reddy
2010 Mar 11
2
[LLVMdev] gold plugin use
---- Original message ----
>Date: Wed, 10 Mar 2010 22:09:22 -0800
>From: Nick Lewycky <nicholas at mxc.ca>
>Subject: Re: [LLVMdev] glod plugin use
>To: Swarup Kumar Sahoo <ssahoo2 at illinois.edu>
>Cc: llvmdev at cs.uiuc.edu, Rafael Espindola <espindola at google.com>
>
>Swarup Kumar Sahoo wrote:
>> Hi,
>> I was trying to use gold plugin
2017 Sep 25
2
Potential infinite loop in MemorySSAUpdater
I understand that changing the starting element to “InsertedPHIs.being() + StartingPHISize” it will be finite but given that InsrtedPHIs is finite.
I have a case where one element(same element is appened to InsertedPHIs) is added to InsertedPHIs every time fixupDefs is invoked. I traced the issue why this was happening.
template <class RangeType>
MemoryAccess
2017 Sep 23
2
Potential infinite loop in MemorySSAUpdater
With regards
Bhargav Reddy Godala
Software Engineer 2
Bangalore, India
E-mail: Bhargav-reddy.Godala at amd.com<mailto:Bhargav-reddy.Godala at amd.com> Ext 30678
On 23-Sep-2017, at 9:27 PM, Daniel Berlin <dberlin at dberlin.org<mailto:dberlin at dberlin.org>> wrote:
On Sat, Sep 23, 2017 at 8:38 AM, Godala, Bhargav-reddy via llvm-dev <llvm-dev at
2017 Sep 25
0
Potential infinite loop in MemorySSAUpdater
We should only add phis that were newly inserted, not ones that were
already found. There are two cases we will hvae inserted phis:
Part of the recursive call, or right in this function.
The easiest way to differentiate new phis from old ones is whether they
have 0 operands.
I expect the attached will fix it.
If not, please file a bug with reproducible IR.
On Sun, Sep 24, 2017 at 11:40 PM,
2010 Apr 01
2
Regarding problem with encoding / decoding
Hi,
I am new to speex library. I am doing project in VC++. My project details are,
I have to capture voice from mic and encode it then decode and play.
I am capturing the voice and storing in a buffer from there i am reading frame by frame ( 160 bytes) . These bytes i am converting to short int then calling speex_encode-int(). The output buffer i am passing to doder speex_decode_int() function.
2011 Sep 19
14
gmaps4rails "acts_as_gmappable" error
Hi all,
I started to see fun of gmaps4rails gem from
https://github.com/apneadiving/Google-Maps-for-Rails.
After everything done. When visited the locahost, i got the following
error.
undefined local variable or method `acts_as_gmappable'' for #<Class:
0x31a9da8>
the error is due to i have line "acts_as_gmappable" in my model.
Anybody knows how this is
2010 Mar 11
0
[LLVMdev] glod plugin use
Swarup Kumar Sahoo wrote:
> Hi,
> I was trying to use gold plugin to compile and run some of my passes on some large softwares like mysql, apache etc. When I compile using llvm-gcc, everything works fine. But, when I followed the instructions on http://llvm.org/docs/GoldPlugin.html#build to use gold plugin, I got errors like:
>
> /home/vadve/ssahoo2/local/bin/ld: error:
2019 Apr 08
2
How to Generate Code Size of llvm test suite
Hi All,
Could anyone please give your suggestions on how to generate/get Code Size of each test in LLVM TEST Suite.
Thanks & Regards,
Ramakota Reddy.
IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person,
2017 Sep 23
2
Potential infinite loop in MemorySSAUpdater
Hi,
Can some one explain the intended behaviour of following loop in void MemorySSAUpdater::insertDef(MemoryDef *MD, bool RenameUses) function.
while (!FixupList.empty()) {
unsigned StartingPHISize = InsertedPHIs.size();
fixupDefs(FixupList);
FixupList.clear();
// Put any new phis on the fixup list, and process them
FixupList.append(InsertedPHIs.end() - StartingPHISize,
2017 Sep 23
0
Potential infinite loop in MemorySSAUpdater
On Sat, Sep 23, 2017 at 9:55 AM, Godala, Bhargav-reddy <
Bhargav-reddy.Godala at amd.com> wrote:
>
> With regards
> Bhargav Reddy Godala
> Software Engineer 2
> Bangalore, India
> E-mail: Bhargav-reddy.Godala at amd.com Ext 30678
>
>
>
> On 23-Sep-2017, at 9:27 PM, Daniel Berlin <dberlin at dberlin.org> wrote:
>
>
>
> On Sat, Sep 23, 2017 at
2010 Mar 10
4
[LLVMdev] glod plugin use
Hi,
I was trying to use gold plugin to compile and run some of my passes on some large softwares like mysql, apache etc. When I compile using llvm-gcc, everything works fine. But, when I followed the instructions on http://llvm.org/docs/GoldPlugin.html#build to use gold plugin, I got errors like:
/home/vadve/ssahoo2/local/bin/ld: error: modules/standard/libstandard.a: no archive symbol table
2017 Jul 07
2
[Gluster-devel] gfid and volume-id extended attributes lost
On Fri, Jul 7, 2017 at 9:20 PM, Ankireddypalle Reddy <areddy at commvault.com>
wrote:
> Pranith,
>
> Thanks for looking in to the issue. The bricks were
> mounted after the reboot. One more thing that I noticed was when the
> attributes were manually set when glusterd was up then on starting the
> volume the attributes were again lost. Had to stop glusterd
2017 Jul 07
3
[Gluster-devel] gfid and volume-id extended attributes lost
On Fri, Jul 7, 2017 at 9:25 PM, Ankireddypalle Reddy <areddy at commvault.com>
wrote:
> 3.7.19
>
These are the only callers for removexattr and only _posix_remove_xattr has
the potential to do removexattr as posix_removexattr already makes sure
that it is not gfid/volume-id. And surprise surprise _posix_remove_xattr
happens only from healing code of afr/ec. And this can only happen
2005 Jul 25
12
Asterisk Configuration
Dear users,
I am new to this mailing list. Can someone send me a guide or steps to
configure Asterisk on Linux box? I will highly appreciate.
Regards,
Afzaal
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20050725/14265bb5/attachment.htm
2007 Jun 24
1
Divided by Zero Error Speex-dev Digest, Vol 34, Issue 12
Hi,
I am getting the same problem of divided by zero while decoding in the
function multicomb(). I am using fixed point speex code. Can anybody
please tell me the solution for it.
-----Original Message-----
From: speex-dev-bounces@xiph.org [mailto:speex-dev-bounces@xiph.org] On
Behalf Of speex-dev-request@xiph.org
Sent: Tuesday, March 13, 2007 12:30 AM
To: speex-dev@xiph.org
Subject: Speex-dev
2019 Apr 22
2
how can i get consumer-typeset exe in debug mode
Hi All,
I have made some changes in AArch64LoadStoreOptimizer.cpp file and with check-llvm all tests are passing successfully.
But in llvm-test suite some tests are failing, like consumer-typeset tests are failing.
Now I want to debug with 'consumer-typeset' exe from SANDBOX. But it is release build.
How can I debug this issue in this case and how can I get 'consumer-typeset'