search for: redirected

Displaying 20 results from an estimated 7599 matches for "redirected".

2005 Feb 22
6
selective redirect
...it seems to be working. However I decided tu exclude two hosts from the redirect (ie acces the net directly) and can''t manage to achieve that. I am using the following rule: REDIRECT loc:!192.168.13.48,!192.168.13.200 3128 tcp 80 - With this rule everything gets redirected thru squid. I also tried: REDIRECT loc:!192.168.13.48,192.168.13.200 3128 tcp 80 - This way, the 48 host does not get redirected but the 200 does. Any suggestion ? I am using shorewall 2.2.1 Thnak you, --- Ligiu Uiorean System Engineer Lasselsberger Cer...
2009 Jul 17
3
[LLVMdev] [PATCH 1/2] Trailing whitespace.
--- include/llvm/System/Program.h | 8 ++++---- lib/System/Unix/Program.inc | 30 +++++++++++++++--------------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/include/llvm/System/Program.h b/include/llvm/System/Program.h index 49de7cf..14f9e9e 100644 --- a/include/llvm/System/Program.h +++ b/include/llvm/System/Program.h @@ -97,12 +97,12 @@ namespace sys { ///
2005 Jun 07
5
redirect and special rules
Hi! REDIRECT lan 3328 tcp www - !192.168.0.0/29,10.0.0.0/16 This rules redirect all traffic web to proxy but howto exclude 1 ip from redirect ?? REDIRECT lan 53 tcp domain - REDIRECT lan 53 udp domain - And in this case howto exclude some ip ? Thx.
2009 Jul 17
1
[LLVMdev] [PATCH 2/2] Make Program::ExecuteNoWait return a process ID.
--- include/llvm/System/Program.h | 14 ++++++++++---- lib/System/Unix/Program.inc | 17 +++++++++-------- lib/System/Win32/Program.inc | 16 +++++++++------- 3 files changed, 28 insertions(+), 19 deletions(-) diff --git a/include/llvm/System/Program.h b/include/llvm/System/Program.h index 14f9e9e..05c73ac 100644 --- a/include/llvm/System/Program.h +++ b/include/llvm/System/Program.h @@
2007 Sep 21
3
merb 0.4.0 - redirect problems
I had redirects working just the other day... before I upgraded to the latest release. Can somebody please chime in as to why this simple redirect is throwing an error? Controller: ----------------------- def do redirect "http://www.ebay.com" end Error Output: ------------------------- Internal server error 500 uninitialized constant Merb::ControllerMixin::MovedTemporarily in
2015 Sep 01
4
Redirected Folders not working for Desktop
I have a problem I've not been able to figure out. I'm using Samba4 as the office AD/DC. I've set up the Redirected Folders policy to redirect Desktop, Favorites and Documents to \\mail.hprs.local. I set this up months ago and it works great for Documents and Favorites, but Desktop is not redirected (no Desktop): $ ls -l /redirectedFolders/Users/thisuser/ total 16 drwxrwx---+ 10 thisuser users 4096 2015-08-25...
2023 Aug 31
1
Samba Folder Redirection
...not work. When I try setting that, when a user logs on it will just sit at the signing in screen with the spinning wheel indefinetaly. Does anyone know what the issue might be? > > I have tried both options, Using Group Policy Folder Redirection and Using a Group Policy Preference > > I redirected to \\server\USER\.wprofile\AppData > > Desktop is redirected to \\server\USER\.wprofile\Destkop and it works fine. > > Thanks Hi Chris, According to Microsoft's documentation, you can only redirect AppData\Roaming. I have been using folder redirection for years with both pure Win...
2015 Sep 02
4
Redirected Folders not working for Desktop
Well, I've just added another directory to not make the redirected folders a the root. And, Favorites and Documents do work. Goog suggestion to check the Windows event viewer. I'll do that and get back with what I find. Thanks, --Mark -----Original Message----- > To: samba at lists.samba.org > From: James <lingpanda101 at gmail.com> > Date: T...
2018 Oct 16
3
[sieve] Restrict redirects to only own domain
Hello list, I'd like to let my colleagues redirect mail automatically (via a sieve filter) to other mailboxes within the same domain, but deny redirects to outside mailboxes (gmail, yahoo etc.) since this is considered bad practice and could lead to blacklisting (forwarding spam for example). If I set sieve_max_redirect to 0 then no redirect is allowed, at all. I wish to let redirects to
2012 Jul 16
3
outlook and redirect sieve
Hi Aall, we are having issues with outlook clients, running exchange or lotus being unable to parse the email messages redirected by dovecot's sieve 0.3.1, the command is plain redirect "email at lotusmail.xxx"; redirects from mta also work correctly exchange was fixed by removing this commit http://hg.rename-it.nl/dovecot-2.1-pigeonhole/raw-diff/082216ad12d6/src/lib-sieve/cmd-redirect.c are there any other...
2014 Dec 17
3
AMI Redirect both calls from a bridge
Doe anybody know of a way to redirect both channels from a bridge to different dial plan extensions from the using the AMI. Currently, as soon as I redirect one of the channels the other appears to be dropped and gets reorder tone (congestion, fast busy). I guess what I really need is a way to redirect one of the channels and hold on to the other. Thanks, Neil Cherry
2009 Apr 17
2
Sieve "redirect"
Is there an alternative to the "redirect" Sieve capability? For example: if header :contains "Subject" "Listserv" { redirect "list-user1 at example.com"; redirect "list-user2 at example.com"; redirect "list-user3 at example.com"; stop; } How can I do the above without using "redirect"? Unfortunately,
2006 Jul 21
1
GLX redirection extension
...ream would be infeasible in direct contexts and undesirable in indirect contexts. Compositors would be mainly interested in requests to create and destroy contexts and drawables. These requests should not be time critical. Providing that X protocol Window creation and destruction requests are redirected, then there should be no need to redirect context switching events. SwapBuffer requests on the current drawable do not appear in the X command stream under the GLX specifications. However, the redirected GLX extension might choose to copy these SwapBuffer requests into the the X command strea...
2007 Jul 26
6
response.should_not redirect_to
...9;ve added negative_failure_message to RedirectTo matcher and it seems to function just fine (though as I''ve stated, it''s quite late over here, so I could be wrong) class Spec::Rails::Matchers::RedirectTo def negative_failure_message return %Q{expected to not to be redirected to # {@expected.inspect}, but actually was redirected there} if @redirected end end Any ideas?
2009 Jul 17
0
[LLVMdev] [PATCH 2/2] Make Program::ExecuteNoWait return a process ID.
I don't think this is the right direction for the system library to go. The System library is supposed to expose generic OS independent interfaces, not be a generic way for clients to get OS information. Ultimately I think a better API would be to provide a generic class which represents an executed operating system process, and includes operations to wait for its completion, redirect its IO,
2020 Feb 03
2
Changes to Folder Redirection
I am having some issues that I believe might be related to folder redirection that has prompted me to review my folder redirection GPO settings. On the "Configuring Windows Profile Folder Redirections" page of the Samba WIKI I find an 'information box' that says, /"//Windows does not support dynamically-generated user home folders provided by the Samba [homes] section.
2009 Aug 14
4
Redirecting mail gives 'mail forwarding loop' to the sender - calling for sieve help
Greetings, i am testing: - dovecot-1.2-sieve-0.1.11 - dovecot 1.2.3 - dovecot-1.2-managesieve-0.11.8 (with patch) I am trying to use sieve_after to execute some redirection of mails. I have put in the after script: require "include"; require "fileinto"; if header :contains ["To","Cc"] "userA at acasalud.com.ar" { keep; redirect
2006 Mar 27
13
Is this a bug in Ajax handling?
When a controller responds to a link_to_remote with a redirect_to, the link_to_remote gets a success callback, this would seem like a bug to me, at a minimum it should return a failure? This is driving me crazy because all the login engines/generators respond to an authentication error with a redirect_to. The work around is to change them to all do a render :layout => false, :status => 500
2008 Dec 03
2
Render and/or redirect were called multiple times in this action
I''m trying to add an application enabled/disabled flag in my application.. This is my code. [code=] # application.rb ... before_filter :check_enabled_flag private def check_enabled_flag application_flag = ApplicationFlag.find(:first) if application_flag.application_enabled redirect_to application_disabled_path and return end end[/code] and for some reason
2023 Aug 30
1
Samba Folder Redirection
...pData and it will not work. When I try setting that, when a user logs on it will just sit at the signing in screen with the spinning wheel indefinetaly. Does anyone know what the issue might be? I have tried both options, Using Group Policy Folder Redirection and Using a Group Policy Preference I redirected to \\server\USER\.wprofile\AppData Desktop is redirected to \\server\USER\.wprofile\Destkop and it works fine. Thanks