Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [catch-all]

Catch-all is a mail server configuration to forward all incoming email to one domain and redirect it to a specific recipient.

catch-all
1 vote
0 answers
110 views

Next.js catch all route with getStaticPaths and rewrites

I have been banging my head on this specific set-up. I am trying to achieve a set-up with Next.js where I can rewrite different sets of category pages to a catch-all route. But it always leads to a ...
nicoes's user avatar
  • 93
0 votes
0 answers
358 views

Applying bounce messages for unrecognized/catch-all addresses in Google Workspace

Short version: I want to be able to continue to use my catch-all email system in Google Workspace while applying a bounce message to blocked senders that shows the actual recipient, not the recipient ...
stackcurious's user avatar
2 votes
1 answer
495 views

.NET 7 API catch-all route without breaking static files

We are using attribute routing in a .NET 7 API project. In the startup we call UseStaticFiles() before calling MapController(). Something like this: app .UseDefaultFiles() .UseStaticFiles() ....
PaulVrugt's user avatar
  • 1,862
1 vote
0 answers
229 views

Exclude One Mails in Catch All Default Routing rule in Google Workspace

I am administering Google Workspace email service and I had a catch all done for the delivery of all mails sent to non exiting mailboxes to go in one specific mail box. I've did this with Default ...
Dev Kolio 3's user avatar
0 votes
1 answer
149 views

nginx catchall interfering with wildcard

I want to redirect www (and possibly other subdomains) to my https domain. So I wrote a rule server { listen 80; server_name *.example.com example.com; return 301 https://example.com$...
Andrew Benor's user avatar
0 votes
0 answers
160 views

Having trouble making IMAP work with a catch-all email

I'm having trouble making IMAP work with a catch-all email. When just attempting to sign in I get this error: imapclient.exceptions.LoginError: b'[AUTHENTICATIONFAILED] Invalid credentials (Failure)' ...
John Hooft's user avatar
0 votes
1 answer
44 views

Using Catchall email id to create ticket

I am creating an application that has set of users ( roughly 5000 and growing ). External companies can send them certain documents by email. I dont want to create so many email ids and what to use a ...
VIP's user avatar
  • 89
1 vote
2 answers
9k views

Next.js catch-all / as routing

First of all, apologies if this is a bit confused. That's because I am also confused. I'm pretty new to Next.js and I'm migrating a site over from Gatsby using WP as a headless CMS. I didn't build the ...
kmars's user avatar
  • 154
1 vote
3 answers
2k views

Asp .Net Core 3.1 Web Api catch all controller subroutes http requests

I would like to catch the path of my controller as a string in order to process every requests: [ApiController] [Route("[controller]")] public class BackendController : ...
Rihen's user avatar
  • 91
1 vote
3 answers
3k views

Python Socket.io handle all events (catch all events from client)

The documentation for Python Socket.io is here: https://python-socketio.readthedocs.io/en/latest/api.html#asyncserver-class That is the server class, with 'event' and 'on' methods for handling events. ...
Dan D.'s user avatar
  • 8,237
1 vote
0 answers
70 views

htaccess how to set something like catch all links to one index.html?

I have to disable CMS and there are a lot of link in the air, ight now there is only static page on html5 how to set something like catch all addresses from domain and redirect them to main index....
Qbik's user avatar
  • 11
0 votes
1 answer
33 views

Oracle Table design question: configuration table, default values, primary keys

need to design a table in Oracle, these are my columns: COUNTRY PRODUCT PARAM1 PARAM2 PARAM3 My first thought was that I would like the combination of Country and Product to be a PK. But then, I ...
deb's user avatar
  • 425
3 votes
2 answers
2k views

Catch-all method in class that passes all unknown functions to instance in class

I want to forward all of the unknown functions in my own class definition to an object in that class. One could directly access the object in the class, but was wondering if there is a pythonic way to ...
stackoverFloris's user avatar
0 votes
0 answers
463 views

How to change all AJAX requests to add token header from cookies

I need to send all my XHR requests with a header named token and value coming from cookies. I found a solution, but the code is very very long - and a bit ugly (insert a full external library - so big ...
NicoESIEA's user avatar
  • 539
0 votes
1 answer
589 views

A single catch all statement for deeply nested functions in c++?

#include<bits/stdc++.h> using namespace std; void subtract(int a,int b){ try{ if(b==1) throw "Subtracting by 1 results in previous number"; cout<<a-b<...
user avatar

15 30 50 per page
1
2 3 4 5