similar to: Best version for production systems?

Displaying 20 results from an estimated 11000 matches similar to: "Best version for production systems?"

2004 Nov 24
3
dovecot only answers to imap connections
Hey list, Finally got up and running, and now am trying to figure out why dovecot would only accept imap connections - I have people that are happy with pop, but they can only authenticate when they use imap. Is there a conf setting for this somewhere that I am missing? -- Mitch
2005 May 27
2
imap disconnects on my account only
Talk about personal problems! I am using dovecot-0.99.13-4.FC2, and everything has been going fine for months. Earlier this afternoon, Thunderbird's status pane would say 'Sending authenticate login information...' and I would no longer receive email. When I checked with others, they were fine and dandy. I tried kmail, evolution, and even tried webmail. All had connection errors.
2004 Nov 09
1
noob - integrating dovecot with postfix
Hi list, Just jumped providers and am now desperately trying to get IMAP running on a new server... But not getting the link between postfix and dovecot working. :-( My two problems are: 1) local mail seems to get into the ~/Maildirs, but not from the outside (this is a postfix issue?) 2) I cannot find information on how to tell postfix to use virtual domains/addresses and then connect
2002 Nov 26
3
dovecot and pop3
Dear dovecotters: I'm becoming interested in dovecot as a replacement for UW-IMAPD. Any project that claims it's the "postfix of ____ servers" deserves a looksee. If indeed I were to going to switch at some point, I'd need to replace the UW POP3 server (which is a part of the UW package). I would prefer one that actually used the dovecot IMAP server instead of going to
2004 Aug 24
7
Question about ip_forward in clear_firewall
Firewall users, My apologies as I''m not on this list, so please respond directly as well as to the list. I did try to search the archives and didn''t find any hits, although the search did not like searching for terms with underscores in them (both clear_firewall and ip_forward). I was trying to understand why, when running shorewall stop, even though it echoes IP
2006 Feb 28
2
database tables
I have been assigned a task of building a front end to a database that has already been created. All the database tables have the naming convention of lclclcClclclc. For example; tblComputerNames. How do i get around this in rails since it likes lower case table names to keep with its naming conventions for classes and objects? Mitch Mitch Raful MCSE, CCNP Network Engineer MCCS Quantico
2019 Feb 06
2
Freepbx / Asterisk PJsip multipe devices
that was my first idea. and how should an other user know which number he should dial? user a: soft phone extension 100 hardware phone extension 101 On 06.02.19 15:25, Mitch Claborn wrote: > You can do this in the dial plan. Register the devices separately and > include both addresses in the Dial() command. > > > Mitch > > On 2/6/19 8:16 AM, basti wrote: >> In
2012 Jan 25
3
[PATCH] Btrfs: Check for NULL page in extent_range_uptodate
A user has encountered a NULL pointer kernel oops in btrfs when encountering media errors. The problem has been identified as an unhandled NULL pointer returned from find_get_page(). This modification simply checks for a NULL page, and returns with an error if found (the extent_range_uptodate() function returns 1 on errors). After testing this patch, the user reported that the error with the
2020 Jul 15
2
[MTE] Tagging Globals
Not at this stage -- no. On Wed, Jul 15, 2020 at 3:23 PM Zhaoshi Zheng <zhaoshiz at quicinc.com> wrote: > Mitch, > > > > I forgot to ask: do you have any timeline on sharing it through > Phabricator? > > > > Thanks, > > Zhaoshi > > > > *From:* llvm-dev <llvm-dev-bounces at lists.llvm.org> *On Behalf Of *Zhaoshi > Zheng via llvm-dev
2005 Jan 07
2
Shorewall & IPSec gateway
To all, I''ve just recently finished my "Security Gateway Server" project which separates a 10 laptop WLAN subnet from our main LAN/Internet network. I used Debian Sarge with kernel 2.6.9/ipsec-netfilter patched, and Shorewall 2.2.0-RC3 on a Asus P4S533, 2.4 GHz PenIV and 512MB memory. The Toshiba A60-S166, PenIV, 2.4G laptops run Windows XP Pro and have internal Atheros based
2018 Dec 04
2
asterisk is not seeing my queues in database
I enabled the logs on the mysql database and ran : realtime load queues name cou0002-test in the mysql log I can see that the proper select statement is being executed: 2018-12-04T16:29:27.253094Z 229 Query SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED 2018-12-04T16:29:27.254384Z 229 Prepare SELECT * FROM queues WHERE name = ? 2018-12-04T16:29:27.254902Z 229
2012 Jul 24
1
[PATCH v4] Btrfs: Check INCOMPAT flags on remount and add helper function
In support of the recently added capability to remount with lzo compression, provide a helper function to check the compression INCOMPAT flags when remounting with lzo compression, and set the flags if necessary. Also, implement the new helper function when defragmenting with explicit lzo compression and when setting the default subvolume. Signed-off-by: Mitch Harder
2018 Dec 04
2
DAHDI fax detection
Asterisk 16 latest DAHDI 3.0.0 latest Excerpt from chan_dahdi.conf is shown below. I'm trying to enable fax detection on inbound calls so that I can take appropriate action in the dial plan. "dahdi show channel 1" shows "Fax Handled: no". Does that mean that I don't have it configured correctly? [channels] ; Span 1: WCTE2/0/1 "WCTE23X (PCI) Card 0 Span
2019 Nov 12
2
Using Libfuzzer on a library - linking the library to the fuzz target
Hi Mitch, Thank you for the response. 1. You don't need to build the library with `-fsanitize-coverage=...`, using `-fsanitize=fuzzer-no-link,address` should be sufficient. - Acknowledged 2. (although you can actually build object files/shared libraries with -fsanitize=fuzzer, and the libFuzzer main won't be linked, if this makes your build process easier). - with just the *fuzzer
2006 Oct 19
2
/dev/zap/channel ownership
* is having permission problems accessing /dev/zap/channel. When I look, these devices (everything in /dev/zap) shows root.root for uid and gid. If I start Asterisk from the command line, it runs fine (running as Root). When I start it as a service, I get Oct 19 23:02:55 WARNING[10587] chan_iax2.c: Unable to open IAX timing interface: Permission denied Oct 19 23:02:55 WARNING[10587]
2010 Aug 13
6
Equality of Vectors
Hello, Is there a way to get a single TRUE or FALSE statement from comparing two vectors? For example, c(1,2,3) == c(1,2,3) produces TRUE TRUE TRUE where I would like it to produce only TRUE for use in an if statement. Likewise, when two vectors are not exactly identical (in all elements) I would like a single FALSE result, as opposed to c(1,2,3) == c(1,2,5) TRUE TRUE FALSE Any ideas?
2009 Feb 10
1
[PATCH 1/2] Fix ixgbe RSS operation
The addition of VMDq support to ixgbe completely broke normal RSS receive operation. Since RSS is the default operating mode, the driver would cause a kernel panic as soon as the interface was opened. This patch fixes the problem by correctly checking the VMDQ_ENABLED flag before attempting any VMDQ-specific call. Signed-off-by: Mitch Williams <mitch.a.williams@intel.com> diff -r
2004 Dec 22
2
IPSec and Roadwarrior
Tom, After reading your latest postings, I am correct in understanding that, even with the netfilter-ipsec and policy patches in kernel 2.6, I still would not be able to connect more that one roadwarrior at a time? Mitch
2006 Nov 27
1
Memory leak
Has anyone noticed (using the linux command 'top') a gradual increase in memory usage when asterisk is under heavy processing? I am currently pumping 4 ISDN spans (T-1) through my asterisk test system, and have seen the memory used value in top climb steadily each second. Concurrently, the value for "cached" in top also climbs, but occasionally it drops, as well.
2014 Aug 18
1
Error opening file for reading: Permission denied
Asterisk 12.4 I am seeing message "Error opening file for reading: Permission denied" several times during the asterisk startup (asterisk -cvvvvv) but it doesn't say which file. Is there a way to find out which file is having trouble? -- Mitch